UNPKG

templates-mo

Version:

Templates is a scaffolding framework that makes code generation simple, dynamic, and reusable. Generate files, parts of your app, or whole project structures—without the repetitive copy-pasting

14 lines (13 loc) • 371 B
import { CommandModule } from 'yargs'; export interface UseArgv { use: string; packages: string[]; default: boolean; hidden: boolean; newFolder: boolean; force: boolean; wipe: boolean; buildPaths: string[]; } export declare const options: (yargs: any) => any; export declare const createHandler: CommandModule<object, UseArgv>['handler'];