@egjs/flicking
Version:
Everyday 30 million people experience. It's reliable, flexible and extendable carousel.
14 lines (13 loc) • 408 B
TypeScript
import AnchorPoint from "../../core/AnchorPoint";
import CameraMode from "./CameraMode";
declare class BoundCameraMode extends CameraMode {
checkAvailability(): boolean;
getRange(): {
min: number;
max: number;
};
getAnchors(): AnchorPoint[];
findAnchorIncludePosition(position: number): AnchorPoint | null;
private _findNearestPanel;
}
export default BoundCameraMode;