1
2
3
4
5
6
7
8
9
10
11
12
| import { __extends } from "tslib";
| import { Box } from './Box';
| var BoundingBox = /** @class */ (function (_super) {
| __extends(BoundingBox, _super);
| function BoundingBox(left, top, right, bottom, allowNegativeDimensions) {
| if (allowNegativeDimensions === void 0) { allowNegativeDimensions = false; }
| return _super.call(this, { left: left, top: top, right: right, bottom: bottom }, allowNegativeDimensions) || this;
| }
| return BoundingBox;
| }(Box));
| export { BoundingBox };
| //# sourceMappingURL=BoundingBox.js.map
|
|