UNPKG

antd-mobile

Version:

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

15 lines (14 loc) 445 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; scrollTo: (...args: any[]) => any; render(): JSX.Element; }