diff --git a/apps/web-antd/src/adapter/form.ts b/apps/web-antd/src/adapter/form.ts index 73e9952d1..b6890d066 100644 --- a/apps/web-antd/src/adapter/form.ts +++ b/apps/web-antd/src/adapter/form.ts @@ -48,9 +48,9 @@ async function initSetupVbenForm() { } const useVbenForm = useForm; +export type FormSchemaGetter = () => VbenFormSchema[]; export { initSetupVbenForm, useVbenForm, z }; -export type VbenFormSchema = FormSchema; -export type FormSchemaGetter = () => VbenFormSchema[]; +export type VbenFormSchema = FormSchema; export type VbenFormProps = FormProps;