smatchit_tailwind_project/node_modules/yaml/dist/log.d.ts

4 lines
226 B
TypeScript
Raw Normal View History

2024-07-15 12:57:41 +00:00
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;