Type anys

This commit is contained in:
Adria Navarro 2024-12-27 17:57:51 +01:00
parent 067f38d0d8
commit d67783df97
1 changed files with 2 additions and 2 deletions

View File

@ -21,13 +21,13 @@ interface IndexedUIRow extends UIRow {
interface RowStore {
rows: Writable<UIRow[]>
fetch: Writable<any>
loaded: Writable<any>
loaded: Writable<boolean>
refreshing: Writable<boolean>
loading: Writable<boolean>
rowChangeCache: Writable<any>
inProgressChanges: Writable<any>
hasNextPage: Writable<boolean>
error: Writable<any>
error: Writable<string | null>
}
interface RowDerivedStore {