import { CSSProperties } from 'react'; /** * 轮播图子项属性 */ export interface Image { /** 图片url */ image: string; /** 点击图片跳转地址 */ href?: string; } /** * 轮播图属性 */ export interface CarouselProps { /** 轮播图子项 */ imageList: Image[]; /** * 自动切换的间隔,单位为 ms * @default 3000 */ autoplayInterval?: number; /** 外部样式 */ style?: CSSProperties; }