UNPKG

@glodon-aiot/agent-cli-sdk

Version:

aiot agent client js sdk

13 lines (12 loc) 315 B
export default class Logger { private prefix; private open; static debug: boolean; constructor(prefix: string, open?: boolean); disable(): void; enable(): void; log(...rest: any[]): void; info(...rest: any[]): void; error(...rest: any[]): void; warn(...rest: any[]): void; }