From 877e247fe7a967694b868c619e97c5ea95e96e45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tu=C4=9F=C3=A7e=20K=C3=BC=C3=A7=C3=BCko=C4=9Flu?= Date: Mon, 14 Mar 2022 11:31:10 +0300 Subject: [PATCH] Fixed #2262 - InputSwitch TypeScript modelValue error --- src/components/inputswitch/InputSwitch.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/inputswitch/InputSwitch.d.ts b/src/components/inputswitch/InputSwitch.d.ts index c6fcc9a3e0..a4723b9ac8 100755 --- a/src/components/inputswitch/InputSwitch.d.ts +++ b/src/components/inputswitch/InputSwitch.d.ts @@ -4,7 +4,7 @@ export interface InputSwitchProps { /** * Specifies whether a inputswitch should be checked or not. */ - modelValue?: boolean | undefined; + modelValue?: boolean | string | undefined; /** * Inline style of the component. */