types: remove VanPopupMixin

This commit is contained in:
chenjiahan 2020-09-06 09:26:14 +08:00
parent 4d6c842219
commit 0465ac16f2
3 changed files with 2 additions and 9 deletions

View File

@ -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;

View File

@ -1,4 +0,0 @@
export class VanPopupMixin {
open(): void;
close(): void;
}

4
types/toast.d.ts vendored
View File

@ -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;