MCPcopy
hub / github.com/baidu/amis / FormData

Interface FormData

packages/amis-editor/src/renderer/crud2-control/AddColumnModal.tsx:32–40  ·  view source on GitHub ↗

表单数据

Source from the content-addressed store, hash-verified

30
31/** 表单数据 */
32interface FormData extends InitData {
33 name: string;
34 title: string;
35 feats: Extract<DSFeatureType, 'View' | 'Edit' | 'Delete'>[];
36 viewApi?: string | BaseApiObject;
37 editApi?: string | BaseApiObject;
38 deleteApi?: string | BaseApiObject;
39 __fieldItem: Record<string, any>[];
40}
41
42const AddColumnModal: React.FC<AddColumnModalProps> = props => {
43 const {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected