UNPKG

form-render

Version:

通过 JSON Schema 生成标准 Form,常用于自定义搭建配置界面生成

11 lines (10 loc) 287 B
type FormStore = { schema?: any; flattenSchema: any; context?: any; initialized: boolean; init?: (schema: FormStore['schema']) => any; setContext: (context: any) => any; }; export declare const createStore: () => import("zustand").StoreApi<FormStore>; export {};