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'