@bacons/expo-metro-runtime
Version:
Tools for making experimental Metro bundler features work
18 lines (17 loc) • 609 B
TypeScript
/**
* Copyright (c) Evan Bacon.
* 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 React from 'react';
import { LogBoxLog } from './Data/LogBoxLog';
export declare function LogBoxInspectorContainer(): JSX.Element | null;
export declare function LogBoxInspector({ log, selectedLogIndex, logs }: {
log: LogBoxLog;
selectedLogIndex: number;
logs: LogBoxLog[];
}): JSX.Element;
declare const _default: React.Component<{}, {}, any>;
export default _default;