7 lines
296 B
TypeScript
7 lines
296 B
TypeScript
import type { PluginConfigType } from 'expo-dev-launcher/plugin/build/pluginConfig';
|
|
type DevClientPluginConfigType = PluginConfigType & {
|
|
addGeneratedScheme?: boolean;
|
|
};
|
|
declare const _default: import("expo/config-plugins").ConfigPlugin<DevClientPluginConfigType>;
|
|
export default _default;
|