Type nulls
This commit is contained in:
parent
a8abe5bc43
commit
0ca0ba6433
|
@ -19,14 +19,14 @@ const { buildQuery, limit: queryLimit, runQuery, sort } = QueryUtils
|
||||||
|
|
||||||
interface DataFetchStore<TDefinition, TQuery> {
|
interface DataFetchStore<TDefinition, TQuery> {
|
||||||
rows: Row[]
|
rows: Row[]
|
||||||
info: null
|
info: any
|
||||||
schema: TableSchema | null
|
schema: TableSchema | null
|
||||||
loading: boolean
|
loading: boolean
|
||||||
loaded: boolean
|
loaded: boolean
|
||||||
query: TQuery
|
query: TQuery
|
||||||
pageNumber: number
|
pageNumber: number
|
||||||
cursor: null
|
cursor: string | null
|
||||||
cursors: any[]
|
cursors: string[]
|
||||||
resetKey: string
|
resetKey: string
|
||||||
error: {
|
error: {
|
||||||
message: string
|
message: string
|
||||||
|
|
Loading…
Reference in New Issue