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.
12 lines (11 loc) • 319 B
TypeScript
import BaseError from './base-error';
/**
* A base class for all connection related errors.
*/
declare class ConnectionError extends BaseError {
/** The connection specific error which triggered this one */
parent: Error;
original: Error;
constructor(parent: Error);
}
export default ConnectionError;