@wildboar/qc
Version:
Qualified Certificates in TypeScript
24 lines (23 loc) • 516 B
JavaScript
import { qcStatement_1 } from "../PKIXqualified97/qcStatement-1.oa.mjs";
import { qcStatement_2 } from "../PKIXqualified97/qcStatement-2.oa.mjs";
/**
* @summary SupportedStatements
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* SupportedStatements QC-STATEMENT ::= {
* qcStatement-1 |
* qcStatement-2 , ... -- For future extensions -- }
* ```
*
* @constant
* @type {QC_STATEMENT[]}
*
*/
export const SupportedStatements = [
qcStatement_1,
qcStatement_2,
];
/* eslint-enable */