From bfaa0fb309e4ad20ee68ac7684c7410c2ff0fc3f Mon Sep 17 00:00:00 2001 From: Ryan Wang Date: Mon, 18 Mar 2024 16:09:32 +0800 Subject: [PATCH] fix: FormKit code input type error Signed-off-by: Ryan Wang --- ui/env.d.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ui/env.d.ts b/ui/env.d.ts index bb43da4ffa..e505ad3ada 100644 --- a/ui/env.d.ts +++ b/ui/env.d.ts @@ -119,5 +119,10 @@ declare module "@formkit/inputs" { type: "menuCheckbox"; value?: string[]; }; + + code: { + type: "code"; + value?: string; + }; } }