zigbee-herdsman
Version:
An open source ZigBee gateway solution with node.js.
9 lines • 463 B
TypeScript
export interface Logger {
debug: (messageOrLambda: string | (() => string), namespace: string) => void;
info: (messageOrLambda: string | (() => string), namespace: string) => void;
warning: (messageOrLambda: string | (() => string), namespace: string) => void;
error: (messageOrLambda: string, namespace: string) => void;
}
export declare let logger: Logger;
export declare function setLogger(l: Logger): void;
//# sourceMappingURL=logger.d.ts.map