UNPKG

9s-fe-core

Version:

Core functionalities for authentication, configuration, and repository management.

12 lines (11 loc) 464 B
import { ActionSchemaModel, FieldTypeModel } from '../../models/schema_model'; interface FormViewProps { actionSchema?: ActionSchemaModel; dataItem?: Record<string, any>; isOpen: boolean; onClose: any; submitSuccess: (newData: Record<string, any>) => void; } export declare const FormView: React.FC<FormViewProps>; export declare const updateFieldListValue: (prevList: FieldTypeModel[], key: string, value: any) => FieldTypeModel[]; export {};