UNPKG

node-codesign

Version:
8 lines (7 loc) 191 B
interface CodesignOpts { identity: string; appPath: string; entitlements: string; } declare function codesign(opts: CodesignOpts, done: (err?: Error) => void): void; export = codesign;