delphirtl
Version:
RTL functions from Delphi
26 lines (25 loc) • 644 B
TypeScript
/**
* Logs the given message to the console
*
* @param {?*} [message]
* @param {...any[]} optionalParams
* @category Log
*/
declare function log(message?: any, ...optionalParams: any[]): void;
/**
* Logs the given message to the console's info
*
* @param {?*} [message]
* @param {...any[]} optionalParams
* @category Log
*/
declare function info(message?: any, ...optionalParams: any[]): void;
/**
* Logs the given message to the console's error
*
* @param {?*} [message]
* @param {...any[]} optionalParams
* @category Log
*/
declare function error(message?: any, ...optionalParams: any[]): void;
export { info, error, log };