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]

17 lines (16 loc) 451 B
/** * Runs the `uname` command and returns the trimmed output. * * Copied from `@electron/get`. */ export declare function uname(): string; export declare type ConfigVariables = { arm_version?: string; }; /** * Generates an architecture name that would be used in an Electron or Node.js * download file name. * * Copied from `@electron/get`. */ export declare function getNodeArch(arch: string, configVariables: ConfigVariables): string;