(entry: LspRegistrationEntry)
| 37 | export type LspRegistrationEntry = LspServerManifest | LspServerBundle; |
| 38 | |
| 39 | function isBundleEntry(entry: LspRegistrationEntry): entry is LspServerBundle { |
| 40 | return typeof (entry as LspServerBundle)?.getServers === "function"; |
| 41 | } |
| 42 | |
| 43 | export function register( |
| 44 | entry: LspRegistrationEntry, |