mili
Version:
Scaffolding with continuous control over the development of the project.
31 lines (30 loc) • 534 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
*/
showDiff?: boolean;
/**
* @default false
*/
fold?: boolean;
/**
* @default {}
*/
answers?: Answers;
}
export declare function check(options: Options): Promise<void>;
export {};