1 | import 'typings-global';
|
2 | /**
|
3 | * logs an info to console
|
4 | * @param logText
|
5 | * @returns {boolean}
|
6 | */
|
7 | export declare let log: (logText: any) => void;
|
8 | export declare let info: (logText: any) => void;
|
9 | /**
|
10 | * logs an 'OK!' message to console
|
11 | * @param logText
|
12 | * @returns {boolean}
|
13 | */
|
14 | export declare let ok: (logText: any) => void;
|
15 | /**
|
16 | * logs a success to console
|
17 | * @param logText string to log as error
|
18 | * @returns {boolean}
|
19 | */
|
20 | export declare let success: (logText: any) => void;
|
21 | /**
|
22 | * logs a 'warn:' message to console
|
23 | * @param logText string to log as error
|
24 | * @returns {boolean}
|
25 | */
|
26 | export declare let warn: (logText: any) => void;
|
27 | /**
|
28 | * logs an error to console
|
29 | * @param logText
|
30 | * @returns {boolean}
|
31 | */
|
32 | export declare let error: (logText: any) => void;
|
33 | /**
|
34 | * logs an directory to console
|
35 | * @param logText
|
36 | * @returns {boolean}
|
37 | */
|
38 | export declare let dir: (logText: any) => void;
|
39 | /**
|
40 | * note
|
41 | */
|
42 | export declare let note: (logText: any) => void;
|
43 | /**
|
44 | * creates a new empty line
|
45 | * @param linesArg
|
46 | * @returns void
|
47 | */
|
48 | export declare let newLine: (linesArg?: number) => void;
|
49 | /**
|
50 | * logs a reduced log that only logs changes of consequential log messages
|
51 | */
|
52 | export declare let logReduced: (logTextArg: string, repeatEveryTimesArg?: number) => void;
|