UNPKG

create-expo-cljs-app

Version:

Create a react native application with Expo and Shadow-CLJS!

9 lines (8 loc) 577 B
import type { ExpoConfig } from '@expo/config-types'; import { JSONValue } from '@expo/json-file'; import type { ConfigPlugin } from '../Plugin.types'; export declare const JS_ENGINE_PROP_KEY = "expo.jsEngine"; export declare const DEFAULT_JS_ENGINE = "jsc"; export declare const withJsEnginePodfileProps: ConfigPlugin; export declare function getJsEngine(config: Pick<ExpoConfig, 'ios' | 'jsEngine'>): "hermes" | "jsc"; export declare function setJsEngine(config: Pick<ExpoConfig, 'ios' | 'jsEngine'>, podfileProperties: Record<string, JSONValue>): Record<string, JSONValue>;