UNPKG

better-npm-init

Version:

A better version of npm init, with templates and more. Usage: better-npm-init <template> [--yarn] [--install] [--git] [--yes] [--help]

8 lines (7 loc) 275 B
export interface Mount { mountPath: string; imagePath: string; } export declare const getMountedImages: () => Promise<Mount[]>; export declare const mountImage: (filePath: string) => Promise<Mount>; export declare const unmountImage: (mount: Mount) => Promise<void>;