UNPKG

590 BTypeScriptView Raw
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 */
7import CustomConsole from './CustomConsole';
8export 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}