1 | import { MakerBase, MakerOptions } from '@electron-forge/maker-base';
|
2 | import { ForgeArch, ForgePlatform } from '@electron-forge/shared-types';
|
3 | import { MakerRpmConfig } from './Config';
|
4 | export declare function rpmArch(nodeArch: ForgeArch): string;
|
5 | export default class MakerRpm extends MakerBase<MakerRpmConfig> {
|
6 | name: string;
|
7 | defaultPlatforms: ForgePlatform[];
|
8 | requiredExternalBinaries: string[];
|
9 | isSupportedOnCurrentPlatform(): boolean;
|
10 | make({ dir, makeDir, targetArch }: MakerOptions): Promise<string[]>;
|
11 | }
|
12 | export { MakerRpm, MakerRpmConfig };
|
13 |
|
\ | No newline at end of file |