Skip to content

Commit 19b64ef

Browse files
authored
fix(maker-snap): allow MakerSnapConfig to also be SnapcraftConfig (#1725)
1 parent f77a087 commit 19b64ef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/maker/snap/src/Config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Options } from 'electron-installer-snap';
1+
import { Options, SnapcraftConfig } from 'electron-installer-snap';
22

33
// eslint-disable-next-line import/prefer-default-export
4-
export type MakerSnapConfig = Omit<Options, 'arch' | 'dest' | 'src'>;
4+
export type MakerSnapConfig = Omit<Options, 'arch' | 'dest' | 'src'> & SnapcraftConfig;

0 commit comments

Comments
 (0)