From: 丶远方 Date: Thu, 18 May 2023 23:47:23 +0000 (+0800) Subject: chore: remove unused imports (#8327) X-Git-Tag: v3.3.5~125 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5ddeb45e82ad3bd930a8289bbdfec11abb28d56c;p=thirdparty%2Fvuejs%2Fcore.git chore: remove unused imports (#8327) --- diff --git a/packages/vue/jsx-runtime/index.d.ts b/packages/vue/jsx-runtime/index.d.ts index a44382cfbb..9d022dd0c0 100644 --- a/packages/vue/jsx-runtime/index.d.ts +++ b/packages/vue/jsx-runtime/index.d.ts @@ -1,9 +1,4 @@ -import type { - VNode, - IntrinsicElementAttributes, - ReservedProps, - NativeElements -} from '@vue/runtime-dom' +import type { VNode, ReservedProps, NativeElements } from '@vue/runtime-dom' /** * JSX namespace for usage with @jsxImportsSource directive diff --git a/packages/vue/jsx.d.ts b/packages/vue/jsx.d.ts index afc1039e46..cec81c564d 100644 --- a/packages/vue/jsx.d.ts +++ b/packages/vue/jsx.d.ts @@ -1,11 +1,6 @@ // global JSX namespace registration // somehow we have to copy=pase the jsx-runtime types here to make TypeScript happy -import type { - VNode, - IntrinsicElementAttributes, - ReservedProps, - NativeElements -} from '@vue/runtime-dom' +import type { VNode, ReservedProps, NativeElements } from '@vue/runtime-dom' declare global { namespace JSX {