create-expo-module
Version:
The script to create the Expo module
7 lines (6 loc) • 306 B
TypeScript
import { type PackageManagerName } from './packageManager';
import type { SubstitutionData } from './types';
/**
* Initializes a new Expo project as an example app.
*/
export declare function createExampleApp(data: SubstitutionData, targetDir: string, packageManager: PackageManagerName): Promise<void>;