Files
jindengchen-ai-report/cool-unix/uni_modules/cool-ui/components/cl-banner/props.ts

26 lines
552 B
TypeScript
Raw Normal View History

2025-11-13 10:36:23 +08:00
import type { PassThroughProps } from "../../types";
export type ClBannerPassThrough = {
className?: string;
item?: PassThroughProps;
itemActive?: PassThroughProps;
image?: PassThroughProps;
dots?: PassThroughProps;
dot?: PassThroughProps;
dotActive?: PassThroughProps;
};
export type ClBannerProps = {
className?: string;
pt?: ClBannerPassThrough;
list?: string[];
previousMargin?: number;
nextMargin?: number;
autoplay?: boolean;
interval?: number;
showDots?: boolean;
disableTouch?: boolean;
height?: any;
imageMode?: string;
};