@wildboar/pkcs
Version:
Public Key Cryptography Standard PDUs in TypeScript
28 lines • 745 B
text/typescript
import { INTEGER } from "@wildboar/asn1";
import * as $ from "@wildboar/asn1/functional";
/**
* @summary TokenInfo_version
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* TokenInfo-version ::= INTEGER { -- REMOVED_FROM_UNNESTING -- }
* ```
*/
export type TokenInfo_version = INTEGER;
/**
* @summary TokenInfo_version_v1
* @constant
* @type {number}
*/
export declare const TokenInfo_version_v1: TokenInfo_version;
/**
* @summary TokenInfo_version_v1
* @constant
* @type {number}
*/
export declare const v1: TokenInfo_version;
export declare const _decode_TokenInfo_version: $.ASN1Decoder<INTEGER>;
export declare const _encode_TokenInfo_version: $.ASN1Encoder<INTEGER>;
//# sourceMappingURL=TokenInfo-version.ta.d.mts.map