mirror of
https://github.com/deployphp/action.git
synced 2025-02-23 11:40:27 +00:00
3 lines
226 B
TypeScript
3 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;
|