| 11 | } |
| 12 | |
| 13 | export interface NormalizeFontDataContext { |
| 14 | dev: boolean |
| 15 | renderedFontURLs: Map<string, string> |
| 16 | assetsBaseURL: string |
| 17 | callback?: (filename: string, url: string) => void |
| 18 | } |
| 19 | |
| 20 | export function normalizeFontData(context: NormalizeFontDataContext, faces: RawFontFaceData | FontFaceData[]): FontFaceData[] { |
| 21 | const data: FontFaceData[] = [] |
nothing calls this directly
no outgoing calls
no test coverage detected