()
| 79 | |
| 80 | /** Return the parsed spec config, loading and caching it on first call. */ |
| 81 | export function getSpecConfig(): ParsedConfig { |
| 82 | if (!_cachedConfig) { |
| 83 | _cachedConfig = loadSpecConfig(); |
| 84 | } |
| 85 | return _cachedConfig; |
| 86 | } |
| 87 | |
| 88 | // ── Interfaces ─────────────────────────────────────────────────────── |
| 89 |
no test coverage detected
searching dependent graphs…