Skip to content

Commit

Permalink
fix(maker-snap): allow MakerSnapConfig to also be SnapcraftConfig (#1725
Browse files Browse the repository at this point in the history
)
  • Loading branch information
malept authored May 30, 2020
1 parent f77a087 commit 19b64ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/maker/snap/src/Config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Options } from 'electron-installer-snap';
import { Options, SnapcraftConfig } from 'electron-installer-snap';

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

0 comments on commit 19b64ef

Please sign in to comment.