From 1e0a3b4162faa4e066c55525b25bd9cb832f7f14 Mon Sep 17 00:00:00 2001 From: dap <15891557205@163.com> Date: Wed, 8 Apr 2026 10:45:02 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=9B=B4=E6=96=B0=20VbenFormSchema=20?= =?UTF-8?q?=E7=B1=BB=E5=9E=8B=E4=BB=A5=E5=8C=85=E5=90=AB=20ComponentPropsM?= =?UTF-8?q?ap?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/web-antd/src/adapter/form.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;