Added Cert X509

This commit is contained in:
Dolan
2017-06-07 23:48:32 +01:00
parent a586ed6d0c
commit 7fb59e070d
3 changed files with 8 additions and 1 deletions

5
types/nodegit/cert-x509.d.ts vendored Normal file
View File

@@ -0,0 +1,5 @@
export class CertX509 {
certType: number;
data: Buffer;
len: number;
}

View File

@@ -11,7 +11,8 @@ export { Blame } from './blame';
export { Blob } from './blob';
export { Branch } from './branch';
export { Buf } from './buf';
export { CertHostKey } from './cert-host-key';
export { CertHostkey } from './cert-host-key';
export { CertX509 } from './cert-x509';
export { Cert } from './cert';
export { CheckoutOptions } from './checkout-options';
export { Checkout } from './checkout';

View File

@@ -25,6 +25,7 @@
"branch.d.ts",
"buf.d.ts",
"cert-host-key.d.ts",
"cert-x509.d.ts",
"cert.d.ts",
"checkout-options.d.ts",
"checkout.d.ts",