Bug 1478894 - Part 1: Add an initial boilerplate React/Redux app for the new Rules...
[gecko.git] / devtools / client / inspector / rules / actions / index.js
blob3e29d63c4b5094375f0614e85edea74ca1e83fc2
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2  * License, v. 2.0. If a copy of the MPL was not distributed with this
3  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5 "use strict";
7 const { createEnum } = require("devtools/client/shared/enum");
9 createEnum([
11   // Update the entire rules state with the new list of rules.
12   "UPDATE_RULES",
14 ], module.exports);