ntt-flow
Version:
The sequence of initialization, modification, aggregation, or other processes through which a data entity passes from instantiation to persistence.
19 lines • 586 B
JavaScript
define(["require", "exports"], function (require, exports) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var FIND = 'FIND';
var QUERY = 'QUERY';
exports.fetchActions = {
FIND: FIND,
QUERY: QUERY
};
var reducePersistence = function (state, action) {
switch (action.type) {
case FIND: return state;
case QUERY: return state;
default: return state;
}
};
exports.default = reducePersistence;
});
//# sourceMappingURL=reduceFetch.js.map