Files
flipper/src/fb-stubs/ScribeLogger.tsx
Pascal Hartig 2e1dc7d40d Migrate ScribeLogger
Summary: _typescript_

Reviewed By: danielbuechele

Differential Revision: D16691033

fbshipit-source-id: 19da8bea4032e33a9bd219476aa12e2154dc3103
2019-08-09 10:47:13 -07:00

19 lines
412 B
TypeScript

/**
* Copyright 2018-present Facebook.
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
* @format
*/
export type ScribeMessage = {
category: string;
message: string;
};
import {Logger} from '../fb-interfaces/Logger.js';
export default class ScribeLogger {
constructor(logger: Logger) {}
send(message: ScribeMessage) {}
}