5 lines
282 B
TypeScript
5 lines
282 B
TypeScript
export declare function setDebug(enabled: boolean): void;
|
|
export declare function isDebugEnabled(): boolean;
|
|
export declare function logDebug(tag: string, message: string, data?: unknown): void;
|
|
export declare function logError(tag: string, message: string, error?: unknown): void;
|