2016-10-16 00:26:43 +00:00
|
|
|
import 'typings-global';
|
2016-05-02 00:23:40 +00:00
|
|
|
/**
|
|
|
|
* logs an info to console
|
|
|
|
* @param logText
|
|
|
|
* @returns {boolean}
|
|
|
|
*/
|
2016-07-23 23:17:38 +00:00
|
|
|
export declare let log: (logText: any) => void;
|
2016-05-02 00:23:40 +00:00
|
|
|
export declare let info: (logText: any) => void;
|
|
|
|
/**
|
|
|
|
* logs an 'OK!' message to console
|
|
|
|
* @param logText
|
|
|
|
* @returns {boolean}
|
|
|
|
*/
|
|
|
|
export declare let ok: (logText: any) => void;
|
|
|
|
/**
|
|
|
|
* logs a success to console
|
|
|
|
* @param logText string to log as error
|
|
|
|
* @returns {boolean}
|
|
|
|
*/
|
|
|
|
export declare let success: (logText: any) => void;
|
|
|
|
/**
|
|
|
|
* logs a 'warn:' message to console
|
|
|
|
* @param logText string to log as error
|
|
|
|
* @returns {boolean}
|
|
|
|
*/
|
|
|
|
export declare let warn: (logText: any) => void;
|
|
|
|
/**
|
|
|
|
* logs an error to console
|
|
|
|
* @param logText
|
|
|
|
* @returns {boolean}
|
|
|
|
*/
|
|
|
|
export declare let error: (logText: any) => void;
|
|
|
|
/**
|
|
|
|
* logs an directory to console
|
|
|
|
* @param logText
|
|
|
|
* @returns {boolean}
|
|
|
|
*/
|
|
|
|
export declare let dir: (logText: any) => void;
|
2017-01-21 22:12:39 +00:00
|
|
|
/**
|
|
|
|
* note
|
|
|
|
*/
|
|
|
|
export declare let note: (logText: any) => void;
|
2016-06-16 21:57:49 +00:00
|
|
|
/**
|
|
|
|
* creates a new empty line
|
|
|
|
* @param linesArg
|
|
|
|
* @returns void
|
|
|
|
*/
|
2016-06-16 00:17:28 +00:00
|
|
|
export declare let newLine: (linesArg?: number) => void;
|
2016-06-16 21:57:49 +00:00
|
|
|
/**
|
|
|
|
* logs a reduced log that only logs changes of consequential log messages
|
|
|
|
*/
|
|
|
|
export declare let logReduced: (logTextArg: string, repeatEveryTimesArg?: number) => void;
|