UNPKG

mili

Version:

Scaffolding with continuous control over the development of the project.

27 lines (26 loc) 493 B
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 upgrade(options: Options, version?: string): Promise<void>; export {};