Files
WAI_Project_UNIX/uni_modules/cool-ui/components/cl-pagination/props.ts
2025-07-21 16:47:04 +08:00

17 lines
341 B
TypeScript

import type { PassThroughProps } from "../../types";
export type ClPaginationPassThrough = {
className?: string;
item?: PassThroughProps;
prev?: PassThroughProps;
next?: PassThroughProps;
};
export type ClPaginationProps = {
className?: string;
pt?: ClPaginationPassThrough;
modelValue?: number;
total?: number;
size?: number;
};