Added CertHostKey

This commit is contained in:
Dolan
2017-06-07 23:43:14 +01:00
parent 3063a2730a
commit a586ed6d0c
3 changed files with 8 additions and 0 deletions

6
types/nodegit/cert-host-key.d.ts vendored Normal file
View File

@@ -0,0 +1,6 @@
export class CertHostkey {
certType: number;
type: number;
hashMd5: string;
hashSha1: string;
}

View File

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

View File

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