From 10a0ca70e07c14f5ec0272c23aadfadf7c7c868b Mon Sep 17 00:00:00 2001 From: Wolfgang Rathgeb Date: Tue, 12 Mar 2024 15:19:47 +0100 Subject: [PATCH] allow null on textarea value --- types/TextArea/TextArea.svelte.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/TextArea/TextArea.svelte.d.ts b/types/TextArea/TextArea.svelte.d.ts index 6b1fa440..9f68db62 100644 --- a/types/TextArea/TextArea.svelte.d.ts +++ b/types/TextArea/TextArea.svelte.d.ts @@ -8,7 +8,7 @@ export interface TextAreaProps extends RestProps { * Specify the textarea value * @default "" */ - value?: string; + value?: null | string; /** * Specify the placeholder text