Files
WAI_Project_UNIX/uni_modules/cool-ui/components/cl-waterfall/props.ts
2025-08-19 18:11:00 +08:00

12 lines
206 B
TypeScript

export type ClWaterfallPassThrough = {
className?: string;
};
export type ClWaterfallProps = {
className?: string;
pt?: ClWaterfallPassThrough;
column?: number;
gutter?: number;
nodeKey?: string;
};