21 lines
412 B
TypeScript
21 lines
412 B
TypeScript
import { FontFaceConfiguration } from '../types/fontFaceConfiguration';
|
|
import { Styles } from '../types/style';
|
|
|
|
declare function fontFace({
|
|
fontFamily,
|
|
fontFilePath,
|
|
fontStretch,
|
|
fontStyle,
|
|
fontVariant,
|
|
fontWeight,
|
|
fileFormats,
|
|
formatHint,
|
|
localFonts,
|
|
unicodeRange,
|
|
fontDisplay,
|
|
fontVariationSettings,
|
|
fontFeatureSettings,
|
|
}: FontFaceConfiguration): Styles;
|
|
|
|
export default fontFace;
|