Skip to content

Commit be42b24

Browse files
author
Tony Crisci
authored
Merge pull request #46 from eventualbuddha/additional-typing-fixes
fix(types): add `Interface.emitPropertiesChanged`
2 parents 8e77b32 + b184bf0 commit be42b24

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

types.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ declare module 'dbus-next' {
4444
export class Interface extends EventEmitter {
4545
constructor(name: string);
4646
static configureMembers(members: { properties?: { [key: string]: PropertyOptions }, methods?: { [key: string]: MethodOptions }, signals?: { [key: string]: SignalOptions } }): void;
47+
static emitPropertiesChanged(interface: Interface, changedProperties: { [key: string]: any }, invalidatedProperties: string[]): void
4748
}
4849
export function property(opts: PropertyOptions): PropertyDecorator;
4950
export function method(opts: MethodOptions): MethodDecorator;

0 commit comments

Comments
 (0)