UNPKG

@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

9 lines (8 loc) 291 B
import type { DatabaseErrorParent } from '../database-error'; import { DatabaseError } from '../database-error'; /** * Thrown when a database query times out because of a deadlock */ export declare class TimeoutError extends DatabaseError { constructor(parent: DatabaseErrorParent); }