()
| 57 | } |
| 58 | |
| 59 | export async function loadIllustrationAliases(): Promise<Record<string, string[]>> { |
| 60 | if (illustrationAliasesCache) { |
| 61 | return illustrationAliasesCache; |
| 62 | } |
| 63 | const bundled = readBundledJson('illustrationAliases.json'); |
| 64 | return (illustrationAliasesCache = bundled && typeof bundled === 'object' ? bundled : {}); |
| 65 | } |
| 66 | |
| 67 | export function loadStyleMacroPropertyValues(): Record< |
| 68 | string, |
no test coverage detected