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.

22 lines
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;
}