-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathReactQuery_Types.res
49 lines (41 loc) · 1.28 KB
/
ReactQuery_Types.res
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
type query
type timeValue
type boolOrAlwaysValue
type refetchIntervalValue
type notifyOnChangePropsValue
type retryValue<'queryError>
type retryDelayValue<'queryError>
type queryDataKeyOrFilterValue<'queryKey>
type placeholderDataValue
type queryFunctionContext<'queryKey, 'pageParam> = {
queryKey: 'queryKey,
pageParam: 'pageParam,
}
type retryParam<'error> = [#bool(bool) | #number(int) | #fn((int, 'error) => bool)]
type retryDelayParam<'error> = [#number(int) | #fn((int, 'error) => int)]
type time = [#number(int) | #infinity]
type refetchInterval = [#bool(bool) | #number(int)]
type boolOrAlways = [#bool(bool) | #always]
type notifyOnChangeProps = [#array(array<string>) | #all]
type infiniteData<'queryData> = {
pages: array<'queryData>,
pageParams: array<int>,
}
type queryStatus = [#pending | #success | #error]
type placeholderData<'queryData, 'queryResult> = [
| #data('queryData)
| #function(unit => option<'queryResult>)
]
type queryFilter<'queryKey> = {
exact?: bool,
@as("type") type_?: [#active | #inactive | #all],
stale?: bool,
fetching?: bool,
predicate?: query => bool,
queryKey?: 'queryKey,
}
type queryDataKeyOrFilter<'queryKey> = [#keys('queryKey) | #filters(queryFilter<'queryKey>)]
type refetchOptions = {
throwOnError: bool,
cancelRefetch: bool,
}