@wildboar/pc
Version:
Trusted Computing Group Platform Certificate ASN.1 data structures in TypeScript
28 lines • 614 B
text/typescript
import { INTEGER } from "@wildboar/asn1";
import * as $ from "@wildboar/asn1/functional";
/**
* @summary Version
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* Version ::= INTEGER { v1(0) }
* ```
*/
export type Version = INTEGER;
/**
* @summary Version_v1
* @constant
* @type {number}
*/
export declare const Version_v1: Version;
/**
* @summary Version_v1
* @constant
* @type {number}
*/
export declare const v1: Version;
export declare const _decode_Version: $.ASN1Decoder<INTEGER>;
export declare const _encode_Version: $.ASN1Encoder<INTEGER>;
//# sourceMappingURL=Version.ta.d.mts.map