mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
14 lines
308 B
TypeScript
14 lines
308 B
TypeScript
import { VanPopupMixin } from './mixins/popup';
|
|
|
|
export class VanImagePreview extends VanPopupMixin {
|
|
images: string[];
|
|
startPosition: number;
|
|
}
|
|
|
|
export interface ImagePreview {
|
|
(images: string[], startPosition?: number): VanImagePreview;
|
|
install(): void;
|
|
}
|
|
|
|
export const ImagePreview: ImagePreview;
|