@nutui/nutui-react
Version:
京东风格的轻量级移动端 React 组件库,支持一套代码生成 H5 和小程序
10 lines (9 loc) • 487 B
TypeScript
import React from 'react';
import SwiperItem from "../swiperitem";
import { SwiperRef, WebSwiperProps } from "../../types";
export type { SwiperRef, WebSwiperProps as SwiperProps } from "../../types";
type CompoundedComponent = React.ForwardRefExoticComponent<Partial<WebSwiperProps> & Omit<React.HTMLAttributes<HTMLDivElement>, 'onChange'> & React.RefAttributes<SwiperRef>> & {
Item: typeof SwiperItem;
};
declare const InnerSwiper: CompoundedComponent;
export default InnerSwiper;