UNPKG

antd-mobile

Version:

基于 React 的移动设计规范实现

14 lines (13 loc) 406 B
/// <reference types="react" /> import React from 'react'; import tsPropsType from './PropsType'; import IndexedList from './Indexed.web'; export default class ListView extends React.Component<tsPropsType, any> { static defaultProps: { prefixCls: string; listPrefixCls: string; }; static DataSource: any; static IndexedList: typeof IndexedList; render(): JSX.Element; }