/** * Тип отладочного сообщения */ export declare enum DebugMessageType { DEBUG = "DEBUG", LOG = "LOG", WARN = "WARN", ERROR = "ERROR" } declare namespace Debug { let debug: Function; let log: Function; let warn: Function; let error: Function; function enabled(): boolean; function toggle(enable: boolean): void; function send(type: DebugMessageType, ...args: any[]): void; function test(tag: string, ...args: any[]): void; } export default Debug;