| 42 | const fontProperties = new Set(['font-weight', 'font-style', 'font-stretch']) |
| 43 | |
| 44 | interface FontProperties { |
| 45 | 'font-weight'?: string |
| 46 | 'font-style'?: string |
| 47 | 'font-stretch'?: string |
| 48 | } |
| 49 | |
| 50 | /** |
| 51 | * Extracts font family and source information from a CSS @font-face rule using css-tree. |
nothing calls this directly
no outgoing calls
no test coverage detected