-
-
Notifications
You must be signed in to change notification settings - Fork 365
/
missing-types.d.ts
52 lines (49 loc) · 1.89 KB
/
missing-types.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
// TODO Remove pending merging of https://github.com/gulpjs/gulplog/pull/12
declare module "gulplog" {
/**
* Highest log level. Typically used for debugging purposes.
*
* If the first argument is a string, all arguments are passed to node's util.format() before being emitted.
* @param msg Message to log
* @param args Arguments to format message with via util.format()
*/
export function debug(msg: string, ...args: any[]): void;
export function debug(msg: any): void;
/**
* Standard log level. Typically used for user information.
*
* If the first argument is a string, all arguments are passed to node's util.format() before being emitted.
* @param msg Message to log
* @param args Arguments to format message with via util.format()
*/
export function info(msg: string, ...args: any[]): void;
export function info(msg: any): void;
/**
* Warning log level. Typically used for warnings.
*
* If the first argument is a string, all arguments are passed to node's util.format() before being emitted.
* @param msg Message to log
* @param args Arguments to format message with via util.format()
*/
export function warn(msg: string, ...args: any[]): void;
export function warn(msg: any): void;
/**
* Error log level. Typically used when things went horribly wrong.
*
* If the first argument is a string, all arguments are passed to node's util.format() before being emitted.
* @param msg Message to log
* @param args Arguments to format message with via util.format()
*/
export function error(msg: string, ...args: any[]): void;
export function error(msg: any): void;
const _default = {
debug,
info,
warn,
error,
};
export default _default;
}
declare module "gulp-concat-css" {
export = (...args?: unknown[]) => unknown;
}