UNPKG

signing-enclave

Version:

A code signing and notarization tool for macOS and Windows applications. Uses Azure Key Vault for secret and certificate management.

18 lines (17 loc) 566 B
import { Command } from "@commander-js/extra-typings"; export type macNotarizationOptions = { appleId: string; teamId: string; $appSpecificPassword: string; }; export declare const watchCommand: Command<[], { folder: string; macCert?: string | undefined; macNotarize?: string | undefined; macInstallerCert?: string | undefined; masDevelopmentCert?: string | undefined; masDistributionCert?: string | undefined; masInstallerCert?: string | undefined; windowsCert?: string | undefined; secrets?: string | undefined; }>;