antd-mobile
Version:
基于 React 的移动设计规范实现
20 lines (19 loc) • 478 B
TypeScript
import * as React from 'react';
export interface ListFooterProps {
/** web only */
prefixCls?: string;
style?: React.CSSProperties;
/** web only */
className?: string;
onClick?: Function;
children?: any;
}
export default class ListFooter extends React.Component<ListFooterProps, any> {
static propTypes: {
prefixCls: React.Requireable<any>;
};
static defaultProps: {
prefixCls: string;
};
render(): JSX.Element;
}