action-u
Version:
Redux Action Generator (promoting action creators and types)
33 lines (25 loc) • 967 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.generateActions = undefined;
var _generateActions = require('./action/generateActions');
var _generateActions2 = _interopRequireDefault(_generateActions);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
//***
//*** Promote all library utilities through a single module.
//***
// NOTE: This non-default export supports ES6 imports.
// Example:
// import { generateActions } from 'action-u';
// -or-
// import * as ActionU from 'action-u';
exports.generateActions = _generateActions2.default;
// NOTE: This default export supports CommonJS modules (otherwise Babel does NOT promote them).
// Example:
// const { generateActions } = require('action-u');
// -or-
// const ActionU = require('action-u');
exports.default = {
generateActions: _generateActions2.default
};
;