index.d.ts 245 B

1234
  1. export { formatErrMsg, formatInfoMsg, formatWarnMsg } from './format';
  2. type LogType = 'error' | 'warn' | 'info' | 'log';
  3. export declare function resetOutput(type: LogType): void;
  4. export declare function output(type: LogType, msg: string): void;