12 lines
527 B
TypeScript
12 lines
527 B
TypeScript
import MakerBase, { MakerOptions } from '@electron-forge/maker-base';
|
|
import { ForgeArch, ForgePlatform } from '@electron-forge/shared-types';
|
|
import { MakerRpmConfig } from './Config';
|
|
export declare function rpmArch(nodeArch: ForgeArch): string;
|
|
export default class MakerRpm extends MakerBase<MakerRpmConfig> {
|
|
name: string;
|
|
defaultPlatforms: ForgePlatform[];
|
|
requiredExternalBinaries: string[];
|
|
isSupportedOnCurrentPlatform(): boolean;
|
|
make({ dir, makeDir, targetArch, }: MakerOptions): Promise<any>;
|
|
}
|