supastash
Version:
Offline-first sync engine for Supabase in React Native using SQLite
18 lines • 544 B
TypeScript
/**
* Logs a message to the console if debug mode is enabled
* @param args - The arguments to log
*/
declare const log: (...args: any[]) => void;
export default log;
/**
* Logs an error to the console if debug mode is enabled
* @param args - The arguments to log
*/
declare const logError: (...args: any[]) => void;
/**
* Logs a warning to the console if debug mode is enabled
* @param args - The arguments to log
*/
declare const logWarn: (...args: any[]) => void;
export { log, logError, logWarn };
//# sourceMappingURL=logs.d.ts.map