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> { 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