You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							26 lines
						
					
					
						
							785 B
						
					
					
				
			
		
		
	
	
							26 lines
						
					
					
						
							785 B
						
					
					
				| 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;
 | |
| }
 |