antd-mobile-alita
Version:
基于 React 的移动设计规范实现
26 lines (25 loc) • 785 B
TypeScript
import * as React from 'react';
import IndexedList from './Indexed';
import { ListViewPropsType } from './PropsType';
export interface ListViewProps extends ListViewPropsType {
onQuickSearch?: (sectionID: any, topId?: any) => void;
quickSearchBarStyle?: React.CSSProperties;
quickSearchBarTop?: {
value: string;
label: string;
};
delayTime?: number;
delayActivityIndicator?: any;
}
export default class ListView extends React.Component<ListViewProps, any> {
static defaultProps: {
prefixCls: string;
listPrefixCls: string;
};
static DataSource: any;
static IndexedList: typeof IndexedList;
listviewRef: any;
scrollTo: (...args: any[]) => any;
getInnerViewNode: () => any;
render(): JSX.Element;
}