Fix types
This commit is contained in:
parent
72d7443d72
commit
55204871a2
|
@ -89,10 +89,12 @@ export type DataFetchDefinition =
|
||||||
| Table
|
| Table
|
||||||
| ViewV2Enriched
|
| ViewV2Enriched
|
||||||
| {
|
| {
|
||||||
|
// These fields are added to allow checking these fields on definition usages without requiring constant castings
|
||||||
schema?: Record<string, any> | null
|
schema?: Record<string, any> | null
|
||||||
primaryDisplay?: string
|
primaryDisplay?: string
|
||||||
rowHeight?: number
|
rowHeight?: number
|
||||||
type?: string
|
type?: string
|
||||||
|
name?: string
|
||||||
}
|
}
|
||||||
|
|
||||||
// Constructs a new fetch model for a certain datasource
|
// Constructs a new fetch model for a certain datasource
|
||||||
|
|
Loading…
Reference in New Issue