@egjs/flicking
Version:
Everyday 30 million people experience. It's reliable, flexible and extendable carousel.
16 lines (15 loc) • 353 B
TypeScript
import Panel from "./panel/Panel";
declare class AnchorPoint {
private _index;
private _pos;
private _panel;
get index(): number;
get position(): number;
get panel(): Panel;
constructor({ index, position, panel }: {
index: number;
position: number;
panel: Panel;
});
}
export default AnchorPoint;