@nlabs/lex
Version:
10 lines (9 loc) • 381 B
TypeScript
export interface InitOptions {
readonly cliName?: string;
readonly install?: boolean;
readonly packageManager?: string;
readonly quiet?: boolean;
readonly typescript?: boolean;
}
export type InitCallback = (status: number) => void;
export declare const init: (appName: string, packageName: string, cmd: InitOptions, callback?: InitCallback) => Promise<number>;