UNPKG

antd-mobile-alita

Version:

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

22 lines (21 loc) 666 B
import * as React from 'react'; import { ListViewPropsType } from './PropsType'; export interface MIndexedListProps extends ListViewPropsType { onQuickSearch?: (sectionID: any, topId?: any) => void; quickSearchBarStyle?: React.CSSProperties; quickSearchBarTop?: { value: string; label: string; }; delayTime?: number; delayActivityIndicator?: React.ReactNode; } export default class MIndexedList extends React.Component<MIndexedListProps, any> { static defaultProps: { prefixCls: string; listPrefixCls: string; listViewPrefixCls: string; }; indexedListRef: any; render(): JSX.Element; }