(themeFont: string, themeFonts: { major: string; minor: string })
| 122 | } |
| 123 | |
| 124 | function resolveThemeFont(themeFont: string, themeFonts: { major: string; minor: string }): string { |
| 125 | const ref = themeFont.toLowerCase() |
| 126 | return ref.includes('major') ? themeFonts.major : themeFonts.minor |
| 127 | } |
| 128 | |
| 129 | function parseFontAttrs( |
| 130 | fontAttrsXml: string, |
no outgoing calls
no test coverage detected