mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
27 lines
384 B
TypeScript
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;
|
|
}
|