logger.d.ts 364 B

123456
  1. import { Diagnostic } from '../../declarations';
  2. export declare const logBuild: (msg: string) => void;
  3. export declare const logReload: (msg: string) => void;
  4. export declare const logWarn: (prefix: string, msg: string) => void;
  5. export declare const logDisabled: (prefix: string, msg: string) => void;
  6. export declare const logDiagnostic: (diag: Diagnostic) => void;