UNPKG

@mertdeveci55/univer-import-export

Version:

Excel/CSV import and export library for Univer spreadsheets with full format preservation

14 lines (13 loc) 447 B
/** * Debug logging utility that can be disabled in production * Set DEBUG environment variable or window.__DEBUG__ to enable logging */ export declare const debug: { log: (...args: any[]) => void; warn: (...args: any[]) => void; error: (...args: any[]) => void; info: (...args: any[]) => void; debug: (...args: any[]) => void; }; export declare const enableDebug: () => void; export declare const disableDebug: () => void;