UNPKG

create-rn-starter-kit

Version:

Interactive CLI for creating modular React Native apps with Expo

13 lines (11 loc) 296 B
export interface TemplateConfig { name: string; description: string; entryPoint: string; features: string[]; } export type TemplateKey = 'basic' | 'auth' | 'full'; export interface AppConfig { selectedTemplate: TemplateKey; availableTemplates: Record<TemplateKey, TemplateConfig>; }