You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
609 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[]>;
}
export { MakerDeb, MakerDebConfig };
//# sourceMappingURL=MakerDeb.d.ts.map