NullConsole.d.ts 541 B

1234567891011121314151617181920
  1. /**
  2. * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
  3. *
  4. * This source code is licensed under the MIT license found in the
  5. * LICENSE file in the root directory of this source tree.
  6. */
  7. import CustomConsole from './CustomConsole';
  8. export default class NullConsole extends CustomConsole {
  9. assert(): void;
  10. debug(): void;
  11. dir(): void;
  12. error(): void;
  13. info(): void;
  14. log(): void;
  15. time(): void;
  16. timeEnd(): void;
  17. trace(): void;
  18. warn(): void;
  19. }
  20. //# sourceMappingURL=NullConsole.d.ts.map