swiper
Version:
Most modern mobile touch slider and framework with hardware accelerated transitions
14 lines (11 loc) • 336 B
TypeScript
import type { Swiper } from './index.d.ts';
export interface CSSSelector extends String {}
export type SwiperModule = (options: {
params: Swiper['params'];
swiper: Swiper;
extendParams: (obj: { [name: string]: any }) => void;
on: Swiper['on'];
once: Swiper['once'];
off: Swiper['off'];
emit: Swiper['emit'];
}) => void;