attr_spec.js 495 B

12345678910111213141516
  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,
  13. itemType: AsnPropTypes.ObjectIdentifier,
  14. })
  15. ], AttrSpec);
  16. export { AttrSpec };