UNPKG

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.

9 lines (8 loc) 266 B
import ConnectionError from '../connection-error'; /** * Thrown when connection is not acquired due to timeout */ declare class ConnectionAcquireTimeoutError extends ConnectionError { constructor(parent: Error); } export default ConnectionAcquireTimeoutError;