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.
12 lines
676 B
12 lines
676 B
import { MakerBase, MakerOptions } from '@electron-forge/maker-base';
|
|
import { ForgePlatform } from '@electron-forge/shared-types';
|
|
import { Options as ElectronWinstallerOptions } from 'electron-winstaller';
|
|
export declare type MakerSquirrelConfig = Omit<ElectronWinstallerOptions, 'appDirectory' | 'outputDirectory'>;
|
|
export default class MakerSquirrel extends MakerBase<MakerSquirrelConfig> {
|
|
name: string;
|
|
defaultPlatforms: ForgePlatform[];
|
|
isSupportedOnCurrentPlatform(): boolean;
|
|
make({ dir, makeDir, targetArch, packageJSON, appName, forgeConfig }: MakerOptions): Promise<string[]>;
|
|
}
|
|
export { MakerSquirrel };
|
|
//# sourceMappingURL=MakerSquirrel.d.ts.map
|