// Type of toast export const INFO = 'info' export const WARNING = 'warning' export const ERROR = 'error' export const SUCCESS = 'success' //Type of Base position export const LEFT_TOP = 'LEFT_TOP' export const LEFT_BOTTOM = 'LEFT_BOTTOM' export const RIGHT_TOP = 'RIGHT_TOP' export const RIGHT_BOTTOM = 'RIGHT_BOTTOM' //Type of animation export const FROM_LEFT = 'from-left' export const FROM_TOP = 'from-top' export const FROM_RIGHT = 'from-right' export const FROM_BOTTOM = 'from-bottom' export const TO_LEFT = 'to-left' export const TO_TOP = 'to-top' export const TO_RIGHT = 'to-right' export const TO_BOTTOM = 'to-bottom' //Delay export const DEFAULT_ANIM_DELAY = 1000 export const DEFAULT_DELAY = 3000