create-expo-cljs-app
Version:
Create a react native application with Expo and Shadow-CLJS!
9 lines (8 loc) • 572 B
TypeScript
import type { ExpoConfig } from '@expo/config-types';
import type { ConfigPlugin } from '../Plugin.types';
import type { PropertiesItem } from './Properties';
export declare const JS_ENGINE_PROP_KEY = "expo.jsEngine";
export declare const DEFAULT_JS_ENGINE = "jsc";
export declare const withJsEngineGradleProps: ConfigPlugin;
export declare function getJsEngine(config: Pick<ExpoConfig, 'android' | 'jsEngine'>): "hermes" | "jsc";
export declare function setJsEngine(config: Pick<ExpoConfig, 'android' | 'jsEngine'>, gradleProperties: PropertiesItem[]): PropertiesItem[];