UNPKG

react-redux

Version:

Official React bindings for Redux

23 lines (17 loc) 814 B
'use strict'; exports.__esModule = true; exports.storeShape = exports.subscriptionShape = undefined; var _propTypes = require('prop-types'); var _propTypes2 = _interopRequireDefault(_propTypes); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } var subscriptionShape = exports.subscriptionShape = _propTypes2.default.shape({ trySubscribe: _propTypes2.default.func.isRequired, tryUnsubscribe: _propTypes2.default.func.isRequired, notifyNestedSubs: _propTypes2.default.func.isRequired, isSubscribed: _propTypes2.default.func.isRequired }); var storeShape = exports.storeShape = _propTypes2.default.shape({ subscribe: _propTypes2.default.func.isRequired, dispatch: _propTypes2.default.func.isRequired, getState: _propTypes2.default.func.isRequired });