UNPKG

412 BTypeScriptView Raw
1import { FontFaceConfiguration } from '../types/fontFaceConfiguration';
2import { Styles } from '../types/style';
3
4declare function fontFace({
5 fontFamily,
6 fontFilePath,
7 fontStretch,
8 fontStyle,
9 fontVariant,
10 fontWeight,
11 fileFormats,
12 formatHint,
13 localFonts,
14 unicodeRange,
15 fontDisplay,
16 fontVariationSettings,
17 fontFeatureSettings,
18}: FontFaceConfiguration): Styles;
19
20export default fontFace;