wix-style-react
Version:
wix-style-react
40 lines (36 loc) • 988 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
var _Notification = require('./Notification.js');
Object.defineProperty(exports, 'default', {
enumerable: true,
get: function get() {
return _interopRequireDefault(_Notification).default;
}
});
Object.defineProperty(exports, 'LOCAL_NOTIFICATION', {
enumerable: true,
get: function get() {
return _Notification.LOCAL_NOTIFICATION;
}
});
Object.defineProperty(exports, 'GLOBAL_NOTIFICATION', {
enumerable: true,
get: function get() {
return _Notification.GLOBAL_NOTIFICATION;
}
});
Object.defineProperty(exports, 'STICKY_NOTIFICATION', {
enumerable: true,
get: function get() {
return _Notification.STICKY_NOTIFICATION;
}
});
Object.defineProperty(exports, 'DEFAULT_TIMEOUT', {
enumerable: true,
get: function get() {
return _Notification.DEFAULT_TIMEOUT;
}
});
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }