From 06170b38af28e4b20322b3e4e0fddf0174a2b908 Mon Sep 17 00:00:00 2001 From: Tobbe Lundberg Date: Sun, 19 Feb 2023 18:52:06 +0100 Subject: [PATCH] Forms: Export EmptyAsValue --- packages/forms/src/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/forms/src/index.tsx b/packages/forms/src/index.tsx index 5ef4e4b0a11e..2273202d279f 100644 --- a/packages/forms/src/index.tsx +++ b/packages/forms/src/index.tsx @@ -161,7 +161,7 @@ const isValueEmpty = (val: string): boolean => val === '' * the comments above the setCoercion function for more details) */ -type EmptyAsValue = null | 'undefined' | 0 | '' +export type EmptyAsValue = null | 'undefined' | 0 | '' type ValueAsType = | 'valueAsDate'