diff --git a/types/jsx.d.ts b/types/jsx.d.ts deleted file mode 100644 index 56efc1949..000000000 --- a/types/jsx.d.ts +++ /dev/null @@ -1,11 +0,0 @@ -import Vue, { VNode } from 'vue'; - -declare global { - namespace JSX { - interface Element extends VNode {} - interface ElementClass extends Vue {} - interface IntrinsicElements { - [elem: string]: any; - } - } -} diff --git a/types/notify.d.ts b/types/notify.d.ts index 6bd30b9ee..4ed23ce3b 100644 --- a/types/notify.d.ts +++ b/types/notify.d.ts @@ -1,4 +1,3 @@ -import Vue from 'vue'; import { VanComponent } from './component'; export type NotifyMessage = string | number; @@ -16,7 +15,7 @@ export type NotifyOptions = { onClick?: ((event: Event) => void) | null; }; -export interface VanNotify extends Vue { +export interface VanNotify { message: NotifyMessage; color: string; background: string; diff --git a/types/toast.d.ts b/types/toast.d.ts index 013525234..0034c7dd4 100644 --- a/types/toast.d.ts +++ b/types/toast.d.ts @@ -1,4 +1,3 @@ -import Vue from 'vue'; import { VanPopupMixin } from './mixins/popup'; type ToastMessage = string | number; @@ -26,7 +25,7 @@ export type ToastOptions = { getContainer?: string | (() => Element); }; -export interface VanToast extends Vue, VanPopupMixin { +export interface VanToast extends VanPopupMixin { type: ToastType; position: ToastPosition; loadingType: ToastLoadingType;