Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

NullConsole.d.ts 590B

1234567891011121314151617181920212223
  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. timeLog(): void;
  18. trace(): void;
  19. warn(): void;
  20. group(): void;
  21. groupCollapsed(): void;
  22. groupEnd(): void;
  23. }