diff --git a/types.d.ts b/types.d.ts index 8b118f0..1cc9981 100644 --- a/types.d.ts +++ b/types.d.ts @@ -44,6 +44,7 @@ declare module 'dbus-next' { export class Interface extends EventEmitter { constructor(name: string); static configureMembers(members: { properties?: { [key: string]: PropertyOptions }, methods?: { [key: string]: MethodOptions }, signals?: { [key: string]: SignalOptions } }): void; + static emitPropertiesChanged(interface: Interface, changedProperties: { [key: string]: any }, invalidatedProperties: string[]): void } export function property(opts: PropertyOptions): PropertyDecorator; export function method(opts: MethodOptions): MethodDecorator;