soft-assertion
Version:
10 lines • 420 B
TypeScript
/**
* throwAssertionErrors - A standalone function to format and throw all collected assertion errors.
*
* @param errorMessageData {Array<{ message: string }>} - Array of assertion error messages.
* @throws {Error} - Throws an error containing all assertion error messages.
*/
export declare const throwAssertionErrors: (errorMessageData: {
message: string;
}[]) => void;
//# sourceMappingURL=LogHelper.d.ts.map