11 lines
188 B
JavaScript
11 lines
188 B
JavaScript
goog.provide('fontface.Descriptors');
|
|
|
|
/**
|
|
* @typedef {{
|
|
* style: (string|undefined),
|
|
* weight: (string|undefined),
|
|
* stretch: (string|undefined)
|
|
* }}
|
|
*/
|
|
fontface.Descriptors;
|