| | |
| | | /** @typedef {import("./ObjectMiddleware").ObjectDeserializerContext} ObjectDeserializerContext */ |
| | | /** @typedef {import("./ObjectMiddleware").ObjectSerializerContext} ObjectSerializerContext */ |
| | | |
| | | /** @typedef {Error & { cause: unknown, errors: EXPECTED_ANY[] }} AggregateError */ |
| | | /** @typedef {Error & { cause?: unknown, errors: EXPECTED_ANY[] }} AggregateError */ |
| | | |
| | | class AggregateErrorSerializer { |
| | | /** |
| | | * Serializes this instance into the provided serializer context. |
| | | * @param {AggregateError} obj error |
| | | * @param {ObjectSerializerContext} context context |
| | | */ |
| | |
| | | } |
| | | |
| | | /** |
| | | * Restores this instance from the provided deserializer context. |
| | | * @param {ObjectDeserializerContext} context context |
| | | * @returns {AggregateError} error |
| | | */ |
| | | deserialize(context) { |
| | | const errors = context.read(); |
| | | // @ts-expect-error ES2018 doesn't `AggregateError`, but it can be used by developers |
| | | // eslint-disable-next-line n/no-unsupported-features/es-builtins, n/no-unsupported-features/es-syntax, unicorn/error-message |
| | | const err = new AggregateError(errors); |
| | | |