import {Logger} from "@yoronsoft/js-utils"; import {PopupDirection, PopupNames} from "./popup"; export const configName = 'rn-libs_popup'; export const logger = new Logger('popup'); export const configInitValue = `${configName}_init`; export const configEmitterParams = `${configName}_emitter`; export const popupDirection: PopupDirection = { left: "left", right: "right", top: "top", bottom: "bottom" } export const popupNames: PopupNames = { view: "view", select: "select", tip: "tip", err: "err" }