diff --git a/types/electron-packager/index.d.ts b/types/electron-packager/index.d.ts index 04e62a28b5..3a3519292e 100644 --- a/types/electron-packager/index.d.ts +++ b/types/electron-packager/index.d.ts @@ -5,6 +5,7 @@ // John Kleinschmidt // Brendan Forster // Mark Lee +// Florian Keller // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped /// @@ -57,9 +58,19 @@ declare namespace electronPackager { } interface ElectronOsXSignOptions { - identity?: string; entitlements?: string; "entitlements-inherit"?: string; + "gatekeeper-assess"?: boolean; + // see https://github.com/electron-userland/electron-packager/blob/92d09bba34599283a794fd6f24b88470f0cb1074/src/mac.js#L359 + identity?: string | true; + "identity-validation"?: boolean; + ignore?: string; + keychain?: string; + "pre-auto-entitlements"?: boolean; + "pre-embed-provisioning-profile"?: boolean; + "provisioning-profile"?: string; + requirements?: string; + type?: string; } /**