不要怂,就是干,撸起袖子干!

Commit 68fcd996 by Musiienko Serhii Committed by Simon Schick

fix(types): update IndexHint.value to IndexHint.values (#11008) (#11015)

1 parent c15d9a5f
......@@ -479,7 +479,7 @@ export type FindAttributeOptions =
export interface IndexHint {
type: IndexHints;
value: string[];
values: string[];
}
export interface IndexHintable {
......
......@@ -4,6 +4,6 @@ import { IndexHints } from '..';
User.findAll({
indexHints: [{
type: IndexHints.FORCE,
value: ['some_index'],
values: ['some_index'],
}],
})
});
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!