mirror of
https://github.com/johndoe6345789/low-code-react-app-b.git
synced 2026-04-24 13:44:54 +00:00
6 lines
201 B
TypeScript
6 lines
201 B
TypeScript
export interface StaticSourceFieldsProps {
|
|
editingSource: DataSource;
|
|
label: string;
|
|
placeholder: string;
|
|
onUpdateField: <K extends keyof DataSource>(field: K, value: DataSource[K]) => void;
|
|
}; |