UNPKG

epic-slidy

Version:
36 lines (35 loc) 653 B
import Slidy from '..'; import { Options } from '../defs'; /** * Create a pagination. * * @export * @class Pagination */ export declare class Pagination { private _slidy; private _opts; private _el; private _currentEl; private _total; /** * Creates an instance of Pagination. */ constructor(_slidy: Slidy, _opts: Options); /** * Destroy component. */ destroy(): void; /** * Init component. */ private _init; /** * Bind event handlers. */ private _bind; /** * Update current index. */ private _update; }