UNPKG

react-chrome-redux

Version:

A set of utilities for building Redux applications in Google Chrome Extensions.

16 lines (13 loc) 502 B
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); // Message type used for dispatch events // from the Proxy Stores to background var DISPATCH_TYPE = exports.DISPATCH_TYPE = 'chromex.dispatch'; // Message type for state update events from // background to Proxy Stores var STATE_TYPE = exports.STATE_TYPE = 'chromex.state'; // Message type for state patch events from // background to Proxy Stores var PATCH_STATE_TYPE = exports.PATCH_STATE_TYPE = 'chromex.patch_state';