import app from "../app"; import { PopupLayerAnimatedType, PopupLayerDirectionType, PopupLayerScale, StorageParams } from "./popupLayer"; export const animatedType: PopupLayerAnimatedType = { none: "none", fade: "fade", left: "left", right: "right", top: "top", bottom: "bottom" } export const directionType: PopupLayerDirectionType = { none: "none", left: "left", right: "right", top: "top", bottom: "bottom" } export const scaleType: PopupLayerScale = { 30: 0.3, 40: 0.4, 50: 0.5, 60: 0.6, 70: 0.7, 80: 0.8, 90: 0.9, 100: 1 } // 配置名称 export const configName = 'rn_libs_popupLayer'; // 数据存储 export const storageArr = new app.StorageArray({name: configName})