1 | import { MakerBase, MakerOptions } from '@electron-forge/maker-base';
|
2 | import { ForgePlatform } from '@electron-forge/shared-types';
|
3 | import { Options as ElectronWinstallerOptions } from 'electron-winstaller';
|
4 | export declare type MakerSquirrelConfig = Omit<ElectronWinstallerOptions, 'appDirectory' | 'outputDirectory'>;
|
5 | export default class MakerSquirrel extends MakerBase<MakerSquirrelConfig> {
|
6 | name: string;
|
7 | defaultPlatforms: ForgePlatform[];
|
8 | isSupportedOnCurrentPlatform(): boolean;
|
9 | make({ dir, makeDir, targetArch, packageJSON, appName, forgeConfig }: MakerOptions): Promise<string[]>;
|
10 | }
|
11 | export { MakerSquirrel };
|
12 |
|
\ | No newline at end of file |