More types

This commit is contained in:
Adria Navarro 2024-12-24 11:25:05 +01:00
parent f1f2b90cfb
commit 812d19b9b0
1 changed files with 4 additions and 3 deletions

View File

@ -1,15 +1,16 @@
import { SortOrder, UIFieldSchema } from "@budibase/types"
import { SortOrder, UIFieldSchema, UISearchFilter } from "@budibase/types"
export interface UIDatasource {
type: string
name: string
id: string
tableId: string
primaryDisplay?: string
sort?: {
field: string
order?: SortOrder
order: SortOrder
}
queryUI: any // TODO
queryUI: UISearchFilter
schema: Record<string, UIFieldSchema>
}