//公共结构体和枚举 export enum ScrollViewEventMap { "scroll-to-top" = 0, "scroll-to-bottom" = 1, "scroll-to-left" = 2, "scroll-to-right" = 3, "scrolling" = 4, "bounce-bottom" = 6, "bounce-left" = 7, "bounce-right" = 8, "bounce-top" = 5, "scroll-ended" = 9, "touch-up" = 10, "scroll-ended-with-threshold" = 11, "scroll-began" = 12, } // /** 公告 */ export interface BulletinEnum { content: string, //公告内容 img: null //公告图片;可空 } /** 弹窗类型 */ export enum TipsOpereteEnum{ yes = 0, yes_no = 1 } /** 资源类型 */ export enum ItemEnum{ currency = 0, material = 1, equip = 2, }