You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
326 B
16 lines
326 B
/**
|
|
* @constructor
|
|
*
|
|
* @param {string} family
|
|
* @param {Object} descriptors
|
|
*/
|
|
var FontFaceObserver = function (family, descriptors) {};
|
|
|
|
/**
|
|
* @param {string=} opt_text
|
|
* @param {number=} opt_timeout
|
|
*
|
|
* @return {Promise.<FontFaceObserver>}
|
|
*/
|
|
FontFaceObserver.prototype.load = function (opt_text, opt_timeout) {};
|