/** * 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. */ import type { TerminalReporter } from 'metro'; type LoggerFn = (...message: ReadonlyArray) => void; /** * Create a dev-middleware logger object that will emit logs via Metro's * terminal reporter. */ export default function createDevMiddlewareLogger(reporter: TerminalReporter): Readonly<{ info: LoggerFn; error: LoggerFn; warn: LoggerFn; }>; export {}; //# sourceMappingURL=createDevMiddlewareLogger.d.ts.map