2016-05-23 07:10:30 +00:00
|
|
|
import "typings-global";
|
2016-05-02 00:23:40 +00:00
|
|
|
export { log } from "./beautylog.log.helpers";
|
|
|
|
/**
|
|
|
|
* logs an info to console
|
|
|
|
* @param logText
|
|
|
|
* @returns {boolean}
|
|
|
|
*/
|
|
|
|
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;
|
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;
|