react-toastify
Version:
React notification made easy
29 lines (28 loc) • 574 B
JavaScript
exports.__esModule = true;
exports.ACTION = exports.TYPE = exports.POSITION = void 0;
var POSITION = {
TOP_LEFT: 'top-left',
TOP_RIGHT: 'top-right',
TOP_CENTER: 'top-center',
BOTTOM_LEFT: 'bottom-left',
BOTTOM_RIGHT: 'bottom-right',
BOTTOM_CENTER: 'bottom-center'
};
exports.POSITION = POSITION;
var TYPE = {
INFO: 'info',
SUCCESS: 'success',
WARNING: 'warning',
ERROR: 'error',
DEFAULT: 'default'
};
exports.TYPE = TYPE;
var ACTION = {
SHOW: 0,
CLEAR: 1,
DID_MOUNT: 2,
WILL_UNMOUNT: 3,
ON_CHANGE: 4
};
exports.ACTION = ACTION;
;