attr_spec.js 488 B

123456789101112131415
  1. var AttrSpec_1;
  2. import { __decorate } from "tslib";
  3. import { AsnType, AsnTypeTypes, AsnPropTypes, AsnArray, } from "@peculiar/asn1-schema";
  4. let AttrSpec = AttrSpec_1 = class AttrSpec extends AsnArray {
  5. constructor(items) {
  6. super(items);
  7. Object.setPrototypeOf(this, AttrSpec_1.prototype);
  8. }
  9. };
  10. AttrSpec = AttrSpec_1 = __decorate([
  11. AsnType({
  12. type: AsnTypeTypes.Sequence, itemType: AsnPropTypes.ObjectIdentifier,
  13. })
  14. ], AttrSpec);
  15. export { AttrSpec };