FormControl value is know unknown

This commit is contained in:
2023-04-23 15:41:53 +10:00
parent e53d8c14a9
commit 30c0caa04d

View File

@@ -183,7 +183,7 @@ export interface FormControlObject {
* @returns {FormControlObject} The form control object.
*/
export const FormControl = (
value: string = "",
value: unknown = "",
validator: ValidationObject | null = null
): FormControlObject => {
return {