From 98b1ee7f51291a5c3e005cb75742b6e3d0eb9766 Mon Sep 17 00:00:00 2001 From: Tobbe Lundberg Date: Mon, 20 Feb 2023 22:19:42 +0100 Subject: [PATCH] Forms: Export EmptyAsValue (#7656) --- 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'