better-npm-init
Version:
A better version of npm init, with templates and more. Usage: better-npm-init <template> [--yarn] [--install] [--git] [--yes] [--help]
7 lines (6 loc) • 347 B
TypeScript
import InstallerBase, { InstallerOptions } from '@electron-forge/installer-base';
export { InstallerOptions };
export default abstract class InstallerLinux extends InstallerBase {
which: (type: string, prog: string, promise: () => Promise<unknown>) => Promise<void>;
sudo: (type: string, program: string, args: string) => Promise<void>;
}