Source code
Revision control
Copy as Markdown
Other Tools
/* 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
"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,
};