UNPKG

homebridge-roborock-control

Version:

A Homebridge plugin to control Roborock vacuum cleaners.

14 lines (13 loc) 543 B
import { Logger } from 'homebridge'; /** * A logging class intended to allow finer-grain control over logging levels. */ export declare class Log { private static enableDebugLog; private static internalLog; static configure(internalLog: Logger, enableDebugLog: boolean): void; static info(message: string, ...parameters: any[]): void; static warn(message: string, ...parameters: any[]): void; static error(message: string, ...parameters: any[]): void; static debug(message: string, ...parameters: any[]): void; }