index-hints.d.ts 192 Bytes BlameHistoryPermalink Edit 1 2 3 4 5 6 7 8 9 10 /** * 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;