all files / barcode/primitives/ rect.js

100% Statements 14/14
100% Branches 0/0
100% Functions 3/3
100% Lines 14/14
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19   148× 148× 148× 148× 148× 148× 148× 148×        
define(["require", "exports"], function (require, exports) {
    "use strict";
    Object.defineProperty(exports, "__esModule", { value: true });
    var Rect = (function () {
        function Rect(x, y, width, height) {
            this.x = Number.MAX_VALUE;
            this.y = Number.MAX_VALUE;
            this.width = 0;
            this.height = 0;
            this.x = x;
            this.y = y;
            this.width = width;
            this.height = height;
        }
        return Rect;
    }());
    exports.Rect = Rect;
});