({local}: LocalConfig)
| 128 | } |
| 129 | |
| 130 | private static async loadDetectorHints({local}: LocalConfig) { |
| 131 | const $config = await ConfigManager.loadConfig({ |
| 132 | name: 'Detector Hints', |
| 133 | local, |
| 134 | localURL: CONFIG_URLs.detectorHints.local, |
| 135 | remoteURL: CONFIG_URLs.detectorHints.remote, |
| 136 | }); |
| 137 | ConfigManager.raw.detectorHints = $config; |
| 138 | ConfigManager.handleDetectorHints(); |
| 139 | } |
| 140 | |
| 141 | private static async loadDynamicThemeFixes({local}: LocalConfig) { |
| 142 | const fixes = await ConfigManager.loadConfig({ |
no test coverage detected