create-expo-cljs-app
Version:
Create a react native application with Expo and Shadow-CLJS!
12 lines (11 loc) • 469 B
TypeScript
import { ExpoConfig } from '@expo/config-types';
import { ModPlatform } from '../Plugin.types';
export declare type PluginHistoryItem = {
name: string;
version: string;
platform?: ModPlatform;
};
export declare function getHistoryItem(config: Pick<ExpoConfig, '_internal'>, name: string): PluginHistoryItem | null;
export declare function addHistoryItem(config: ExpoConfig, item: Omit<PluginHistoryItem, 'version'> & {
version?: string;
}): ExpoConfig;