UNPKG

@zebra-ui/swiper

Version:

专为多端设计的高性能swiper轮播组件库,支持多种复杂的 3D swiper轮播效果。

18 lines (14 loc) 277 B
export interface Device { ios: boolean android: boolean os?: string } export interface GetDeviceParams { userAgent?: string } export interface CalcDevice { (params?: GetDeviceParams): Device } export interface GetDevice { (overrides?: GetDeviceParams): Device }