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

10 lines
171 B
TypeScript

export type ClCollapsePassThrough = {
className?: string;
};
export type ClCollapseProps = {
className?: string;
pt?: ClCollapsePassThrough;
modelValue?: boolean;
};