Type nulls

This commit is contained in:
Adria Navarro 2025-01-08 16:04:39 +01:00
parent a8abe5bc43
commit 0ca0ba6433
1 changed files with 3 additions and 3 deletions

View File

@ -19,14 +19,14 @@ const { buildQuery, limit: queryLimit, runQuery, sort } = QueryUtils
interface DataFetchStore<TDefinition, TQuery> {
rows: Row[]
info: null
info: any
schema: TableSchema | null
loading: boolean
loaded: boolean
query: TQuery
pageNumber: number
cursor: null
cursors: any[]
cursor: string | null
cursors: string[]
resetKey: string
error: {
message: string