8 lines
435 B
TypeScript
8 lines
435 B
TypeScript
export declare const log: (msg: string, d?: any) => void;
|
|
export declare const info: (msg: string, d?: any) => void;
|
|
export declare const error: (msg: string, d?: any) => void;
|
|
export declare const warn: (msg: string, d?: any) => void;
|
|
export declare const debug: (msg: string, d?: any) => void;
|
|
export declare const inspect: (msg: string, d?: any, pretty?: boolean) => void;
|
|
export declare const spinner: (msg: string) => any;
|