recipient_infos.js 560 B

12345678910111213141516
  1. var RecipientInfos_1;
  2. import { __decorate } from "tslib";
  3. import { AsnArray, AsnType, AsnTypeTypes, } from "@peculiar/asn1-schema";
  4. import { RecipientInfo } from "./recipient_info.js";
  5. let RecipientInfos = RecipientInfos_1 = class RecipientInfos extends AsnArray {
  6. constructor(items) {
  7. super(items);
  8. Object.setPrototypeOf(this, RecipientInfos_1.prototype);
  9. }
  10. };
  11. RecipientInfos = RecipientInfos_1 = __decorate([
  12. AsnType({
  13. type: AsnTypeTypes.Set, itemType: RecipientInfo,
  14. })
  15. ], RecipientInfos);
  16. export { RecipientInfos };