mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-18 11:36:36 +00:00
allow null on textarea value
This commit is contained in:
parent
0ef0f9b593
commit
10a0ca70e0
1 changed files with 1 additions and 1 deletions
2
types/TextArea/TextArea.svelte.d.ts
vendored
2
types/TextArea/TextArea.svelte.d.ts
vendored
|
@ -8,7 +8,7 @@ export interface TextAreaProps extends RestProps {
|
|||
* Specify the textarea value
|
||||
* @default ""
|
||||
*/
|
||||
value?: string;
|
||||
value?: null | string;
|
||||
|
||||
/**
|
||||
* Specify the placeholder text
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue