Skip to content

Commit

Permalink
Update monitor.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
donavanbecker committed Jan 26, 2024
1 parent d35d6bd commit bdd561a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/monitor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ export class HapMonitor extends EventEmitter {
private pin;
private evInstances: HapEvInstance[];
private services: ServiceType[];
private logger;
private debug;
private logger: any;
private debug: (arg0: string) => void;

constructor(logger, debug, pin: string, services: ServiceType[]) {
constructor(logger: any, debug: any, pin: string, services: ServiceType[]) {
super();
this.logger = logger;
this.debug = debug;
Expand Down

0 comments on commit bdd561a

Please sign in to comment.