( entry: LspRegistrationEntry, )
| 52 | } |
| 53 | |
| 54 | export function upsert( |
| 55 | entry: LspRegistrationEntry, |
| 56 | ): LspServerDefinition | LspServerBundle { |
| 57 | return register(entry, { replace: true }); |
| 58 | } |
| 59 | |
| 60 | export const servers = { |
| 61 | get(id: string): LspServerDefinition | null { |
nothing calls this directly
no test coverage detected