@sequelize/core
Version:
Sequelize is a promise-based Node.js ORM tool for Postgres, MySQL, MariaDB, SQLite, Microsoft SQL Server, Amazon Redshift, Snowflake’s Data Cloud, Db2, and IBM i. It features solid transaction support, relations, eager and lazy loading, read replication a
13 lines (12 loc) • 376 B
TypeScript
import { BaseError } from './base-error';
/**
* A wrapper for multiple Errors
*
* @param errors The aggregated errors that occurred
*/
export declare class AggregateError extends BaseError {
/** the aggregated errors that occurred */
readonly errors: Array<AggregateError | Error>;
constructor(errors: Array<AggregateError | Error>);
toString(): string;
}