blob: 061894dbf08780509340c62af1330fd7cde83808 [file] [log] [blame]
import FontManager from './FontManager';
// TODO: fix overwrite
FontManager = (function () {
var Font = function () {
this.fonts = [];
this.chars = null;
this.typekitLoaded = 0;
this.isLoaded = false;
this.initTime = Date.now();
};
return Font;
}());
export default FontManager;