props.d.ts 376 B

1234567891011121314
  1. import { IBaseProps } from '../_util/base';
  2. export interface IPaginationProps extends IBaseProps {
  3. /**
  4. * @description 分页符背景色
  5. * @default '#ddd'
  6. */
  7. fillColor: string;
  8. /**
  9. * @description 分页符颜色
  10. * @default '#1677ff'
  11. */
  12. frontColor: string;
  13. }
  14. export declare const PaginationDefaultProps: Partial<IPaginationProps>;