Skip to content

Commit

Permalink
Merge pull request #46 from eventualbuddha/additional-typing-fixes
Browse files Browse the repository at this point in the history
fix(types): add `Interface.emitPropertiesChanged`
  • Loading branch information
Tony Crisci authored Jan 28, 2020
2 parents 8e77b32 + b184bf0 commit be42b24
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit be42b24

Please sign in to comment.