other_key_attribute.js 503 B

123456789101112131415161718
  1. import { __decorate } from "tslib";
  2. import { AsnProp, AsnPropTypes } from "@peculiar/asn1-schema";
  3. export class OtherKeyAttribute {
  4. keyAttrId = "";
  5. keyAttr;
  6. constructor(params = {}) {
  7. Object.assign(this, params);
  8. }
  9. }
  10. __decorate([
  11. AsnProp({ type: AsnPropTypes.ObjectIdentifier })
  12. ], OtherKeyAttribute.prototype, "keyAttrId", void 0);
  13. __decorate([
  14. AsnProp({
  15. type: AsnPropTypes.Any,
  16. optional: true,
  17. })
  18. ], OtherKeyAttribute.prototype, "keyAttr", void 0);