var SafeContents_1; import { __decorate } from "tslib"; import { AsnArray, AsnType, AsnTypeTypes, AsnProp, AsnPropTypes, } from "@peculiar/asn1-schema"; import { PKCS12Attribute } from "./attribute.js"; export class SafeBag { bagId = ""; bagValue = new ArrayBuffer(0); bagAttributes; constructor(params = {}) { Object.assign(this, params); } } __decorate([ AsnProp({ type: AsnPropTypes.ObjectIdentifier }) ], SafeBag.prototype, "bagId", void 0); __decorate([ AsnProp({ type: AsnPropTypes.Any, context: 0, }) ], SafeBag.prototype, "bagValue", void 0); __decorate([ AsnProp({ type: PKCS12Attribute, repeated: "set", optional: true, }) ], SafeBag.prototype, "bagAttributes", void 0); let SafeContents = SafeContents_1 = class SafeContents extends AsnArray { constructor(items) { super(items); Object.setPrototypeOf(this, SafeContents_1.prototype); } }; SafeContents = SafeContents_1 = __decorate([ AsnType({ type: AsnTypeTypes.Sequence, itemType: SafeBag, }) ], SafeContents); export { SafeContents };