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