12 lines
530 B
TypeScript
12 lines
530 B
TypeScript
|
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<any>;
|
||
|
}
|