mirror of
https://github.com/Wei-Shaw/claude-relay-service.git
synced 2026-01-23 19:02:29 +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;
|