mirror of
https://github.com/deployphp/action.git
synced 2024-11-23 12:29:03 +00:00
4 lines
226 B
TypeScript
4 lines
226 B
TypeScript
|
export type LogLevelId = 'silent' | 'error' | 'warn' | 'debug';
|
||
|
export declare function debug(logLevel: LogLevelId, ...messages: any[]): void;
|
||
|
export declare function warn(logLevel: LogLevelId, warning: string | Error): void;
|