(id: string | undefined | null)
| 2 | import type { LspServerBundle, LspServerManifest } from "./types"; |
| 3 | |
| 4 | function toKey(id: string | undefined | null): string { |
| 5 | return String(id ?? "") |
| 6 | .trim() |
| 7 | .toLowerCase(); |
| 8 | } |
| 9 | |
| 10 | interface RegistryAdapter { |
| 11 | registerServer: ( |
no test coverage detected