logger.d.ts 308 B

12345
  1. export declare const logBuild: (msg: string) => void;
  2. export declare const logReload: (msg: string) => void;
  3. export declare const logWarn: (prefix: string, msg: string) => void;
  4. export declare const logDisabled: (prefix: string, msg: string) => void;
  5. export declare const logDiagnostic: (diag: any) => void;