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.

10 lines (9 loc) 342 B
import { ErrorOptions } from '../base-error'; import DatabaseError, { DatabaseErrorParent } from '../database-error'; /** * Thrown when a database query times out because of a deadlock */ declare class TimeoutError extends DatabaseError { constructor(parent: DatabaseErrorParent, options?: ErrorOptions); } export default TimeoutError;