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

13 lines (12 loc) 238 B
/** * An enum of index hints to be used in mysql for querying with index hints * * @property USE * @property FORCE * @property IGNORE */ export declare enum IndexHints { USE = "USE", FORCE = "FORCE", IGNORE = "IGNORE" }