(platform: Platform)
| 169 | |
| 170 | /** Non-throwing lookup, for call-sites that branch on plugin presence. */ |
| 171 | export function tryGetPlugin(platform: Platform): PlatformPlugin | undefined { |
| 172 | return registry.get(platform); |
| 173 | } |
| 174 | |
| 175 | /** The leaf platforms that currently carry a plugin, in registration order. */ |
| 176 | export function registeredPlatforms(): Platform[] { |
no test coverage detected