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