flipper-common
Version:
Server & UI shared Flipper utilities
14 lines • 520 B
TypeScript
/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @format
*/
import { LoggerTypes } from './Logger';
export declare const logLevels: LoggerTypes[];
export type LogTailer = (level: LoggerTypes, ...data: Array<any>) => void;
export declare function addLogTailer(handler: LogTailer): void;
export declare function initLogTailer(): void;
//# sourceMappingURL=LoggerTailer.d.ts.map