@bacons/expo-metro-runtime
Version:
Tools for making experimental Metro bundler features work
18 lines (17 loc) • 535 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 { StyleProp, TextStyle } from 'react-native';
import type { Message } from '../Data/parseLogBoxLog';
declare type Props = {
message: Message;
style: StyleProp<TextStyle>;
plaintext?: boolean;
maxLength?: number;
};
export declare function LogBoxMessage(props: Props): JSX.Element;
export {};