summaryrefslogtreecommitdiffstats
path: root/devtools/client/inspector/boxmodel/types.js
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--devtools/client/inspector/boxmodel/types.js21
1 files changed, 21 insertions, 0 deletions
diff --git a/devtools/client/inspector/boxmodel/types.js b/devtools/client/inspector/boxmodel/types.js
new file mode 100644
index 0000000000..b477974b65
--- /dev/null
+++ b/devtools/client/inspector/boxmodel/types.js
@@ -0,0 +1,21 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+"use strict";
+
+const PropTypes = require("resource://devtools/client/shared/vendor/react-prop-types.js");
+
+/**
+ * The box model data for the current selected node.
+ */
+exports.boxModel = {
+ // Whether or not the geometry editor is enabled
+ geometryEditorEnabled: PropTypes.bool,
+
+ // The layout information of the current selected node
+ layout: PropTypes.object,
+
+ // The offset parent for the selected node
+ offsetParent: PropTypes.object,
+};