UNPKG

@razen-core/zenweb

Version:

A minimalist TypeScript framework for building reactive web applications with no virtual DOM

11 lines 515 B
/** * ZenWeb Runtime Debugging * Debug utilities for development */ export declare function enableDebug(): void; export declare function disableDebug(): void; export declare function isDebugEnabled(): boolean; export declare function debugLog(category: string, message: string, data?: any): void; export declare function debugWarn(category: string, message: string, data?: any): void; export declare function debugError(category: string, message: string, error?: Error): void; //# sourceMappingURL=debug.d.ts.map