/* 轮播图数据参数类型 */ type XSwiperOption = { type?: "img" | "link", url?: string, imgUrl: string } function getXSwiperOption(): XSwiperOption { let obj: XSwiperOption = { type: "img", url: "", imgUrl: "" } return obj } export type { XSwiperOption }