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
606 B
13 lines
606 B
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<string[]>;
|
|
}
|
|
export { MakerRpm, MakerRpmConfig };
|
|
//# sourceMappingURL=MakerRpm.d.ts.map
|