版博士V2.0程序
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

123
  1. export type LogLevelId = 'silent' | 'error' | 'warn' | 'debug';
  2. export declare function debug(logLevel: LogLevelId, ...messages: any[]): void;
  3. export declare function warn(logLevel: LogLevelId, warning: string | Error): void;