From e724c1e5968f7864dc8541950641a1ca40683aa1 Mon Sep 17 00:00:00 2001 From: hakadao Date: Fri, 24 May 2024 00:56:48 +0800 Subject: [PATCH] feat: add AttributifyAttributes to HTMLAttributes in @vue/runtime-dom --- shim.d.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/shim.d.ts b/shim.d.ts index 98a03b1c..5d630af0 100644 --- a/shim.d.ts +++ b/shim.d.ts @@ -1,3 +1,4 @@ +import type { AttributifyAttributes } from '@unocss/preset-attributify' import type { ProtocolWithReturn } from 'webext-bridge' declare module 'webext-bridge' { @@ -8,3 +9,7 @@ declare module 'webext-bridge' { 'get-current-tab': ProtocolWithReturn<{ tabId: number }, { title?: string }> } } + +declare module '@vue/runtime-dom' { + interface HTMLAttributes extends AttributifyAttributes {} +}