UNPKG
node-codesign
Version:
latest (0.3.3)
0.3.3
0.3.2
0.3.1
0.3.0
Sign your apps on OSX.
github.com/mongodb-js/node-codesign
mongodb-js/node-codesign
node-codesign
/
index.d.ts
8 lines
(7 loc)
•
191 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
interface
CodesignOpts
{
identity
:
string
;
appPath
:
string
;
entitlements
:
string
; }
declare
function
codesign
(
opts
:
CodesignOpts
,
done
: (err?:
Error
) =>
void
):
void
;
export
= codesign;