props.ts 206 B

1234567891011
  1. export type ClWaterfallPassThrough = {
  2. className?: string;
  3. };
  4. export type ClWaterfallProps = {
  5. className?: string;
  6. pt?: ClWaterfallPassThrough;
  7. column?: number;
  8. gutter?: number;
  9. nodeKey?: string;
  10. };