props.d.ts 456 B

1234567891011121314151617181920
  1. import { IBaseProps } from '../_util/base';
  2. /**
  3. * @description 列表,内部配合 ListItem 使用。
  4. */
  5. export interface IListProps extends IBaseProps {
  6. /**
  7. * @description 是否带圆角
  8. * @default false
  9. */
  10. radius?: boolean;
  11. /**
  12. * @description 头部说明
  13. */
  14. header?: string;
  15. /**
  16. * @description 底部说明
  17. */
  18. footer?: string;
  19. }
  20. export declare const ListDefaultProps: Partial<IListProps>;