@furystack/core
Version:
Core FuryStack package
10 lines • 428 B
TypeScript
/**
* Error wrapper that carries the original rejections alongside a single
* summary message. Use when an operation has fan-out failures that must all
* be reported (e.g. parallel disposal where every failure should surface).
*/
export declare class AggregatedError extends Error {
readonly rejections: unknown[];
constructor(message: string, rejections: unknown[]);
}
//# sourceMappingURL=aggregated-error.d.ts.map