(heading: string)
| 158 | |
| 159 | /** Resolve a section heading to its canonical name. */ |
| 160 | export function resolveAlias(heading: string): string { |
| 161 | return SECTION_ALIASES[heading] ?? heading; |
| 162 | } |
| 163 | |
| 164 | /** Valid typography property names (for linter validation). */ |
| 165 | export const VALID_TYPOGRAPHY_PROPS = TYPOGRAPHY_PROPERTIES.map(p => p.name); |
no outgoing calls
no test coverage detected
searching dependent graphs…