jamis
Version:
一种支持通过JSON配置方式生成页面的组件库
7 lines (6 loc) • 391 B
TypeScript
import type { IScopedContext } from 'jamis-core';
import type { FormProps } from './types';
export declare const useFormDialog: ({ store, render }: Pick<FormProps, "store" | "render">, scoped: IScopedContext, handleBulkChange: (values: Record<string, any>, submit: boolean) => void) => {
renderDialog: () => JSX.Element;
openFeedback: (dialog: any, ctx: any) => Promise<unknown>;
};