1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | 1× 1× 1× 1× 6933× 6933× 1× 1× 1× 1× | define(["require", "exports"], function (require, exports) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var Size = (function () { function Size(width, height) { this.width = width; this.height = height; } Size.prototype.isEmpty = function () { return this.height === 0 && this.width === 0; }; Size.prototype.clone = function () { return new Size(this.width, this.height); }; return Size; }()); exports.Size = Size; }); |