@dankupfer/create-dn-starter
Version:
Interactive CLI for creating modular React Native apps with Expo
13 lines (11 loc) • 308 B
text/typescript
export interface TemplateConfig {
name: string;
description: string;
entryPoint: string;
features: string[];
}
export type TemplateKey = 'basic' | 'auth' | 'full' | 'summary';
export interface AppConfig {
selectedTemplate: TemplateKey;
availableTemplates: Record<TemplateKey, TemplateConfig>;
}