mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
24 lines
327 B
TypeScript
24 lines
327 B
TypeScript
export namespace Cert {
|
|
const enum TYPE {
|
|
NONE = 0,
|
|
X509 = 1,
|
|
HOSTKEY_LIBSSH2 = 2,
|
|
STRARRAY = 3
|
|
}
|
|
|
|
const enum SSH {
|
|
MD5 = 1,
|
|
SHA1 = 2
|
|
}
|
|
}
|
|
|
|
export class Cert {
|
|
/**
|
|
*
|
|
*
|
|
* @type {Cert.TYPE}
|
|
* @memberof Cert
|
|
*/
|
|
certType: Cert.TYPE;
|
|
}
|