From 22442ba6d0a719081a270fca7ff4432e4f330db7 Mon Sep 17 00:00:00 2001 From: Anthony Fu Date: Tue, 14 Jun 2022 00:14:04 +0800 Subject: [PATCH] fix: remove html.d.ts https://github.com/johnsoncodehk/volar/issues/1077#issuecomment-1146584565 --- src/html.d.ts | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 src/html.d.ts diff --git a/src/html.d.ts b/src/html.d.ts deleted file mode 100644 index 343ccfd94..000000000 --- a/src/html.d.ts +++ /dev/null @@ -1,13 +0,0 @@ -// for UnoCSS attributify mode compact in Volar -// refer: https://github.com/johnsoncodehk/volar/issues/1077#issuecomment-1145361472 -declare module '@vue/runtime-dom' { - interface HTMLAttributes { - [key: string]: any - } -} -declare module '@vue/runtime-core' { - interface AllowedComponentProps { - [key: string]: any - } -} -export {}