test-logger.d.ts 514 B

123456789101112131415161718
  1. /**
  2. * @license
  3. * Copyright Google Inc. 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.io/license
  7. */
  8. import { logging } from '@angular-devkit/core';
  9. /**
  10. * @deprecated
  11. */
  12. export declare class TestLogger extends logging.Logger {
  13. private _latestEntries;
  14. constructor(name: string, parent?: logging.Logger | null);
  15. clear(): void;
  16. includes(message: string): boolean;
  17. test(re: RegExp): boolean;
  18. }