From e5a90893a6a25a40464cc9d5484093ec531e8b78 Mon Sep 17 00:00:00 2001 From: Spencer McWilliams Date: Fri, 13 May 2022 01:23:33 -0700 Subject: [PATCH] fix(types): add `Set` to checkbox binding type for v-model (#5713) --- packages/runtime-dom/types/jsx.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/runtime-dom/types/jsx.d.ts b/packages/runtime-dom/types/jsx.d.ts index 7a00888f6f..ee4f57afd9 100644 --- a/packages/runtime-dom/types/jsx.d.ts +++ b/packages/runtime-dom/types/jsx.d.ts @@ -457,7 +457,7 @@ export interface InputHTMLAttributes extends HTMLAttributes { autocomplete?: string autofocus?: Booleanish capture?: boolean | 'user' | 'environment' // https://www.w3.org/tr/html-media-capture/#the-capture-attribute - checked?: Booleanish | any[] // for IDE v-model multi-checkbox support + checked?: Booleanish | any[] | Set // for IDE v-model multi-checkbox support crossorigin?: string disabled?: Booleanish form?: string -- 2.47.3