/// export interface IFontLoaderProps { /** * The font configurations to load. By default will load the Avenir font from the Veracity CDN. * @default object */ config?: IFontConfig[]; } export interface IFontVariant extends FontFaceObserver.FontVariant { /** * An optional test string used to verify that the font is loaded. */ testString?: string; } export interface IFontConfig { /** * The class name to add to the body tag once all fonts within a configuration is loaded. */ className: string; /** * The name of the font to load. */ name: string; /** * Configuration for the variants of the font to load. */ configs?: IFontVariant[]; }