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) 268 B
import BaseError from './base-error'; /** * Thrown when a record was not found, Usually used with rejectOnEmpty mode (see message for details) */ declare class EmptyResultError extends BaseError { constructor(message: string); } export default EmptyResultError;