props.ts 341 B

12345678910111213141516
  1. import type { PassThroughProps } from "../../types";
  2. export type ClPaginationPassThrough = {
  3. className?: string;
  4. item?: PassThroughProps;
  5. prev?: PassThroughProps;
  6. next?: PassThroughProps;
  7. };
  8. export type ClPaginationProps = {
  9. className?: string;
  10. pt?: ClPaginationPassThrough;
  11. modelValue?: number;
  12. total?: number;
  13. size?: number;
  14. };