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]

12 lines (11 loc) 534 B
import MakerBase, { MakerOptions } from '@electron-forge/maker-base'; import { ForgeArch, ForgePlatform } from '@electron-forge/shared-types'; import { MakerDebConfig } from './Config'; export declare function debianArch(nodeArch: ForgeArch): string; export default class MakerDeb extends MakerBase<MakerDebConfig> { name: string; defaultPlatforms: ForgePlatform[]; requiredExternalBinaries: string[]; isSupportedOnCurrentPlatform(): boolean; make({ dir, makeDir, targetArch }: MakerOptions): Promise<string[]>; }