From 0465ac16f22962298f9c8031562176f1d5dff25c Mon Sep 17 00:00:00 2001 From: chenjiahan Date: Sun, 6 Sep 2020 09:26:14 +0800 Subject: [PATCH] types: remove VanPopupMixin --- types/image-preview.d.ts | 3 +-- types/mixins/popup.d.ts | 4 ---- types/toast.d.ts | 4 +--- 3 files changed, 2 insertions(+), 9 deletions(-) delete mode 100644 types/mixins/popup.d.ts 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;