homebridge-tuya-laundry
Version:
Allows washer/dryer cycle completion notifications using Tuya smart plugs with power meter, now using local control.
14 lines • 379 B
TypeScript
import { Logger } from 'homebridge';
export interface NtfyConfig {
title: string;
topic: string;
serverUrl?: string;
}
export declare class NtfyGateway {
private readonly log;
private readonly config;
private serverUrl;
constructor(log: Logger, config: NtfyConfig);
send(message: string): Promise<void>;
}
//# sourceMappingURL=ntfyGateway.d.ts.map