()
| 306 | // ============================================================================ |
| 307 | |
| 308 | export function inlayHintsClientExtension(): LSPClientExtension { |
| 309 | return { |
| 310 | clientCapabilities: { |
| 311 | textDocument: { |
| 312 | inlayHint: { |
| 313 | dynamicRegistration: true, |
| 314 | resolveSupport: { |
| 315 | properties: [ |
| 316 | "tooltip", |
| 317 | "textEdits", |
| 318 | "label.tooltip", |
| 319 | "label.location", |
| 320 | "label.command", |
| 321 | ], |
| 322 | }, |
| 323 | }, |
| 324 | }, |
| 325 | }, |
| 326 | }; |
| 327 | } |
| 328 | |
| 329 | export function inlayHintsEditorExtension( |
| 330 | config: InlayHintsConfig = {}, |
no outgoing calls
no test coverage detected