feat: add AttributifyAttributes to HTMLAttributes in @vue/runtime-dom

This commit is contained in:
hakadao
2024-05-24 00:56:48 +08:00
parent 19269f2bf3
commit e724c1e596

5
shim.d.ts vendored
View File

@@ -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 {}
}