Extend types

This commit is contained in:
Adria Navarro 2025-01-07 12:39:40 +01:00
parent f4ed2176c9
commit 89485aa9d1
1 changed files with 2 additions and 1 deletions

View File

@ -1,7 +1,8 @@
import { Row, TableSchema } from "@budibase/types" import { Row, TableSchema } from "@budibase/types"
import DataFetch from "./DataFetch" import DataFetch from "./DataFetch"
interface FieldDatasource { export interface FieldDatasource {
tableId: string
fieldType: "attachment" | "array" fieldType: "attachment" | "array"
value: string[] | Row[] value: string[] | Row[]
} }