12 lines
207 B
TypeScript
12 lines
207 B
TypeScript
export type ClWaterfallPassThrough = {
|
|
classNames?: string;
|
|
};
|
|
|
|
export type ClWaterfallProps = {
|
|
className?: string;
|
|
pt?: ClWaterfallPassThrough;
|
|
column?: number;
|
|
gutter?: number;
|
|
nodeKey?: string;
|
|
};
|