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, Oracle, and IBM i. It features solid transaction support, relations, eager and lazy loading, read repli

8 lines (7 loc) 245 B
import { ConnectionError } from '../connection-error'; /** * Thrown when a connection to a database has a hostname that was not reachable */ export declare class HostNotReachableError extends ConnectionError { constructor(cause: Error); }