diff --git a/packages/frontend-core/src/components/grid/stores/datasource.ts b/packages/frontend-core/src/components/grid/stores/datasource.ts index 6b4fb8dc52..721b964626 100644 --- a/packages/frontend-core/src/components/grid/stores/datasource.ts +++ b/packages/frontend-core/src/components/grid/stores/datasource.ts @@ -32,11 +32,15 @@ interface ActionDatasourceStore { datasource: DatasourceStore["definition"] & { actions: DatasourceActions & { refreshDefinition: () => Promise - changePrimaryDisplay: any - addSchemaMutation: any - addSubSchemaMutation: any - saveSchemaMutations: any - resetSchemaMutations: any + changePrimaryDisplay: (column: string) => Promise + addSchemaMutation: (field: string, mutation: UIFieldMutation) => void + addSubSchemaMutation: ( + field: string, + fromField: string, + mutation: UIFieldMutation + ) => void + saveSchemaMutations: () => Promise + resetSchemaMutations: () => void } } }