interface DBusProxy {
    valid: boolean;
    addEventListener<E extends keyof DBusProxyEvents>(event: E, listener: cockpit.EventListener<DBusProxyEvents[E]>): void;
    dispatchEvent<E extends keyof DBusProxyEvents>(event: E, ...args: Parameters<DBusProxyEvents[E]>): void;
    removeEventListener<E extends keyof DBusProxyEvents>(event: E, listener: cockpit.EventListener<DBusProxyEvents[E]>): void;
    [property: string]: unknown;
}

Hierarchy-Diagram

UML class diagram of DBusProxy
Legend
icon for an interface in the UML class diagram interface
icon for a public property in the UML class diagram public property

Hierarchy (view full)

Indexable

[property: string]: unknown

Properties

valid: boolean

Methods