OCA_Backend/api/node_modules/sequelize/dist/lib/index-hints.d.ts

11 lines
192 B
TypeScript
Raw Permalink Normal View History

2022-01-22 13:36:44 +00:00
/**
* Available index hints to be used for querying data in mysql for index hints.
*/
declare enum IndexHints {
USE = 'USE',
FORCE = 'FORCE',
IGNORE = 'IGNORE'
}
export = IndexHints;