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

13 lines
199 B
TypeScript

export type ClColPassThrough = {
className?: string;
};
export type ClColProps = {
className?: string;
pt?: ClColPassThrough;
span?: number;
offset?: number;
push?: number;
pull?: number;
};