define(["require", "exports"], function (require, exports) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var TtfGlyphInfo = (function () {
function TtfGlyphInfo() {
}
Object.defineProperty(TtfGlyphInfo.prototype, "empty", {
get: function () {
var empty = (this.index === this.width && this.width === this.charCode && this.charCode === 0);
return empty;
},
enumerable: true,
configurable: true
});
TtfGlyphInfo.prototype.compareTo = function (obj) {
var glyph = obj;
return this.index - glyph.index;
};
return TtfGlyphInfo;
}());
exports.TtfGlyphInfo = TtfGlyphInfo;
});
|