-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.d.ts
64 lines (60 loc) · 1.43 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/**
* Sets directory of the output log file.
*/
export function setMainDirectory(directory: string): void;
export type Options = {
/**
* Name of the output file.
* @default "error_log"
*/
outputFileName?: string;
/**
* Prefix string to be appended just before the error message.
* @default "Error Message"
*/
errorMessagePrefix?: string;
/**
* Prefix string to be appended just before the error code.
* @default "Error Code"
*/
errorCodePrefix?: string;
/**
* Prefix string to be appended just before the error date.
* @default "Error Date"
*/
errorDatePrefix?: string;
/**
* Format string for date formatting See {@link https://momentjs.com/docs/#/displaying/format/ here} for details.
*/
errorDateFormat?: string;
};
/**
* Set options to be used globally.
* @param {Options} options
*/
export function setOptions(options?: Options): void;
/**
* @example
* ```
* // ES6
* import error_log from "error-printer";
*
* error_log({
* options: {
* outputFileName: "test.log",
* errorMessagePrefix: "Message",
* errorCodePrefix: "Code",
* errorDatePrefix: "OccuredAt",
* errorDateFormat: "DD MMMM YYYY hh:mm A",
* },
* message: "halo",
* code: 400,
* });
* ```
*/
declare function error_log(params: {
message: string;
options?: Options;
code?: string;
}): void;
export = error_log;