@iccube/webfontloader
Version:
Web Font Loader gives you added control when using linked fonts via @font-face.
17 lines (12 loc) • 355 B
JavaScript
goog.provide('webfont.FontModule');
/**
* @interface
*/
webfont.FontModule = function () {};
goog.scope(function () {
var FontModule = webfont.FontModule;
/**
* @param {function(Array.<webfont.Font>, webfont.FontTestStrings=, Object.<string, boolean>=)} onReady
*/
FontModule.prototype.load = function (onReady) {};
});