Type anys

This commit is contained in:
Adria Navarro 2024-12-30 13:13:19 +01:00
parent 66e71caf1b
commit d68bc44249
1 changed files with 4 additions and 3 deletions

View File

@ -1,11 +1,12 @@
import { derived, Readable } from "svelte/store"
import { MinColumnWidth } from "../lib/constants"
import { Store as StoreContext } from "."
import { Row } from "@budibase/types"
interface ViewportDerivedStore {
scrolledRowCount: Readable<any>
visualRowCapacity: Readable<any>
renderedRows: Readable<any>
scrolledRowCount: Readable<number>
visualRowCapacity: Readable<number>
renderedRows: Readable<Row>
columnRenderMap: Readable<Record<string, true>>
}