From: Spencer McWilliams Date: Fri, 13 May 2022 08:23:33 +0000 (-0700) Subject: fix(types): add `Set` to checkbox binding type for v-model (#5713) X-Git-Tag: v3.2.34-beta.1~13 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e5a90893a6a25a40464cc9d5484093ec531e8b78;p=thirdparty%2Fvuejs%2Fcore.git fix(types): add `Set` to checkbox binding type for v-model (#5713) --- 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