logger.d.ts 455 B

123456789101112131415
  1. /**
  2. * @license
  3. * Copyright Google LLC All Rights Reserved.
  4. *
  5. * Use of this source code is governed by an MIT-style license that can be
  6. * found in the LICENSE file at https://angular.dev/license
  7. */
  8. export interface UpdateLogger {
  9. debug(message: string): void;
  10. error(message: string): void;
  11. fatal(message: string): void;
  12. info(message: string): void;
  13. warn(message: string): void;
  14. }
  15. export declare const defaultLogger: UpdateLogger;