nk-cli
Version:
Initialize a vite app fast by NK-CLI
15 lines (14 loc) • 374 B
TypeScript
interface Options {
name?: string;
version?: string;
src?: string;
dest?: string;
components?: string;
pluginType?: 'component' | 'hook' | 'directive';
plugins?: string[];
allPackages?: any[];
precss?: 'less' | 'scss' | '';
}
declare const options: Options;
export default options;
export declare function fetchTemplateFiles(): string[];