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