lisn.js
Version:
Simply handle user gestures and actions. Includes widgets.
26 lines • 717 B
TypeScript
/**
* @module Utils
*/
import { LogFunction } from "../globals/types.js";
/**
* Like `console.info` except if the string representation of the given
* arguments has already been logged, it does nothing.
*
* @category Logging
*/
export declare const logInfo: LogFunction;
/**
* Like `console.warn` except if the string representation of the given
* arguments has already been logged, it does nothing.
*
* @category Logging
*/
export declare const logWarn: LogFunction;
/**
* Like `console.error` except if the string representation of the given
* arguments has already been logged, it does nothing.
*
* @category Logging
*/
export declare const logError: LogFunction;
//# sourceMappingURL=log.d.ts.map