props.ts 171 B

123456789
  1. export type ClCollapsePassThrough = {
  2. className?: string;
  3. };
  4. export type ClCollapseProps = {
  5. className?: string;
  6. pt?: ClCollapsePassThrough;
  7. modelValue?: boolean;
  8. };