Summary: _typescript_ Reviewed By: danielbuechele Differential Revision: D16691033 fbshipit-source-id: 19da8bea4032e33a9bd219476aa12e2154dc3103
19 lines
412 B
TypeScript
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) {}
|
|
}
|