We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54f6581 commit 4b945fdCopy full SHA for 4b945fd
src/lib/queries/get-range.ts
@@ -1,6 +1,7 @@
1
import { Document, Keyword, KeywordType } from 'lib/types'
2
3
export type RangeQueryOptions<TDocument extends Document, TKeyword extends Keyword<TDocument> = Keyword<TDocument>> = {
4
+ format?: string
5
gt?: KeywordType<TDocument, TKeyword>
6
gte?: KeywordType<TDocument, TKeyword>
7
lt?: KeywordType<TDocument, TKeyword>
src/lib/queries/index.ts
@@ -6,3 +6,4 @@ export * from './get-should'
export * from './get-bool'
export * from './get-match'
8
export * from './get-match-phrase-prefix'
9
+export * from './get-range'
0 commit comments