UNPKG

@kitten-science/kitten-scientists

Version:

Add-on for the wonderful incremental browser game: https://kittensgame.com/web/

25 lines 737 B
/** * Print a debugging message to the console. * * @param {...any} args Arguments to pass to `console.debug`. */ export declare function cdebug(...args: Array<unknown>): void; /** * Print an informational message to the console. * * @param {...any} args Arguments to pass to `console.info`. */ export declare function cinfo(...args: Array<unknown>): void; /** * Print a warning to the console. * * @param {...any} args Arguments to pass to `console.warn`. */ export declare function cwarn(...args: Array<unknown>): void; /** * Print an error to the console. * * @param {...any} args Arguments to pass to `console.error`. */ export declare function cerror(...args: Array<unknown>): void; //# sourceMappingURL=Log.d.ts.map