From 204e0cb76068213a8163f31b81093fb598874745 Mon Sep 17 00:00:00 2001 From: Mark Lee Date: Thu, 2 Sep 2021 07:17:22 -0700 Subject: [PATCH] fix: export NotarizeOptions --- src/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/index.ts b/src/index.ts index cfc17ed..3dad2a3 100644 --- a/src/index.ts +++ b/src/index.ts @@ -7,6 +7,8 @@ import { NotarizeOptions } from './types'; const d = debug('electron-notarize'); +export { NotarizeOptions }; + export { validateLegacyAuthorizationArgs as validateAuthorizationArgs } from './validate-args'; export async function notarize({ appPath, ...otherOptions }: NotarizeOptions) {