attr_spec.js 474 B

12345678910111213
  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({ type: AsnTypeTypes.Sequence, itemType: AsnPropTypes.ObjectIdentifier })
  12. ], AttrSpec);
  13. export { AttrSpec };