| 28 | import { binaryNodeSearch, resolveSignature } from '@coderline/alphatab-language-server/server/utils'; |
| 29 | |
| 30 | interface MetaDataCompletionData { |
| 31 | tagLowerCase: string; |
| 32 | tag: string; |
| 33 | } |
| 34 | |
| 35 | interface CompletionItemWithData<T> extends CompletionItem { |
| 36 | data: T; |
nothing calls this directly
no outgoing calls
no test coverage detected