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.
15 lines
433 B
15 lines
433 B
import * as React from 'react';
|
|
import Item from './ListItem';
|
|
import { ListPropsType } from './PropsType';
|
|
export interface ListProps extends ListPropsType {
|
|
prefixCls?: string;
|
|
className?: string;
|
|
role?: string;
|
|
style?: React.CSSProperties;
|
|
}
|
|
export default class List extends React.Component<ListProps, any> {
|
|
static Item: typeof Item;
|
|
static defaultProps: Partial<ListProps>;
|
|
render(): JSX.Element;
|
|
}
|