diff --git a/types/image-preview.d.ts b/types/image-preview.d.ts index 01a209c91..44e00288b 100644 --- a/types/image-preview.d.ts +++ b/types/image-preview.d.ts @@ -1,5 +1,4 @@ import { VanComponent } from './component'; -import { VanPopupMixin } from './mixins/popup'; import { SwipeToOptions } from './swipe'; export type ImagePreviewOptions = @@ -25,7 +24,7 @@ export type ImagePreviewOptions = swipeTo?(index: number, options?: SwipeToOptions): void; }; -export class VanImagePreview extends VanPopupMixin { +export class VanImagePreview { images: string[]; showIndex: boolean; diff --git a/types/mixins/popup.d.ts b/types/mixins/popup.d.ts deleted file mode 100644 index 5d225340a..000000000 --- a/types/mixins/popup.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -export class VanPopupMixin { - open(): void; - close(): void; -} diff --git a/types/toast.d.ts b/types/toast.d.ts index 0034c7dd4..45ff7d200 100644 --- a/types/toast.d.ts +++ b/types/toast.d.ts @@ -1,5 +1,3 @@ -import { VanPopupMixin } from './mixins/popup'; - type ToastMessage = string | number; type ToastType = 'text' | 'loading' | 'success' | 'fail' | 'html'; type ToastPosition = 'top' | 'middle' | 'bottom'; @@ -25,7 +23,7 @@ export type ToastOptions = { getContainer?: string | (() => Element); }; -export interface VanToast extends VanPopupMixin { +export interface VanToast { type: ToastType; position: ToastPosition; loadingType: ToastLoadingType;