From 5c9be49f8d2203892a96517f915195d5fbf6e20a Mon Sep 17 00:00:00 2001 From: vansh kumar kushwaha Date: Sat, 2 Dec 2023 00:44:23 +0530 Subject: [PATCH] feat(index.d.ts): export FormState type This is usefull when we are expecting the formState as a prop from other component #181 --- lib/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/index.d.ts b/lib/index.d.ts index 83a75f6..13c9f5c 100644 --- a/lib/index.d.ts +++ b/lib/index.d.ts @@ -29,7 +29,7 @@ type TextareaProperties = { name: string; } & svelte.JSX.HTMLProps; -type FormState> = { +export type FormState> = { form: Writable; errors: Writable>; touched: Writable>;