mili
Version:
Scaffolding with continuous control over the development of the project.
22 lines (21 loc) • 367 B
TypeScript
interface Options {
template: string;
/**
* @default 'latest'
*/
version?: string;
/**
* The npm Registry
*/
registry?: string;
/**
* @default process.cwd()
*/
cwd?: string;
/**
* @default false
*/
force?: boolean;
}
export declare function init(options: Options): Promise<void>;
export {};