(target: T, key: K)
| 557 | ]; |
| 558 | |
| 559 | function ensure<T, K extends keyof T>(target: T, key: K): T[K] { |
| 560 | if (target[key] === void 0) { |
| 561 | target[key] = {} as any; |
| 562 | } |
| 563 | return target[key]; |
| 564 | } |
| 565 | |
| 566 | interface ResolvedTextDocumentSyncCapabilities { |
| 567 | resolvedTextDocumentSync?: TextDocumentSyncOptions; |
no outgoing calls
no test coverage detected