UNPKG

@phroun/paged-buffer

Version:

High-performance buffer system for editing massive files with intelligent memory management and undo/redo capabilities

13 lines 446 B
/** * Logs messages to the console if debugging is enabled. * Behaves like console.log, accepting multiple arguments. */ export function debug(...args: any[]): void; export function error(...args: any[]): void; /** * Enables or disables debug output. * @param {boolean} enable - True to enable debug output, false to disable. */ export function setDebug(enable: boolean): void; export { debug as warn }; //# sourceMappingURL=logger.d.ts.map