UNPKG

@tuoyuan/json-schema

Version:

json-schema编辑器及表单组件

10 lines (9 loc) 263 B
type DataType = "string" | "number" | "integer" | "object" | "array" | "null"; export interface EditorWidgetItem { type: string; component?: any; dataType?: DataType[]; attrs?: any; } export type EditorWidgetArray = EditorWidgetItem[]; export {};