vue3-ciallo-viewer
Version:
18 lines (17 loc) • 617 B
TypeScript
import { ListViewerProps } from './type/Types';
export { default as ViewerList } from './ViewerList.vue';
/**
* @deprecated
* @param array img HTMLCollection
* @param targetIndex 目标索引
* @param duration 过度时间 ms
* @param zoomSpeed 缩放因子
* @param maxScaleFactor 最大缩放倍数
*/
export declare function CialloViewer(array: HTMLCollection, targetIndex: number, duration: number, zoomSpeed: number, maxScaleFactor: number): void;
/**
* @param obj
* @constructor
*/
export declare function CialloViewer(obj: ListViewerProps): void;
export declare const UnmountTargetViewer: () => void;