UNPKG

antd-mini

Version:

antd-mini 是支付宝小程序 UI 组件库,遵循 Ant Design 规范。

21 lines (20 loc) 456 B
import { IBaseProps } from '../_util/base'; /** * @description 列表,内部配合 ListItem 使用。 */ export interface IListProps extends IBaseProps { /** * @description 是否带圆角 * @default false */ radius?: boolean; /** * @description 头部说明 */ header?: string; /** * @description 底部说明 */ footer?: string; } export declare const ListDefaultProps: Partial<IListProps>;