DefinitelyTyped/types/nodegit/cert-host-key.d.ts
2017-06-08 02:37:10 +01:00

27 lines
384 B
TypeScript

import { Cert } from './cert';
export class CertHostkey {
/**
*
*
* @type {Cert}
* @memberof CertHostkey
*/
parent: Cert;
type: Cert.TYPE;
/**
*
*
* @type {string}
* @memberof CertHostkey
*/
hashMd5: string;
/**
*
*
* @type {string}
* @memberof CertHostkey
*/
hashSha1: string;
}