(config: FontConfig, options: CSSOptions = {})
| 33 | * one combined stylesheet. |
| 34 | */ |
| 35 | const generateCSS = (config: FontConfig, options: CSSOptions = {}): string => |
| 36 | resolveFontFaces(config, options) |
| 37 | .map((face) => renderFontFace(face, config.family, options)) |
| 38 | .join('\n\n'); |
| 39 | |
| 40 | export { generateCSS, generateCSSAssets, type UrlResolver }; |
no test coverage detected