(
fileName: string,
position: number,
options: ts.GetCompletionsAtPositionOptions,
)
| 148 | } |
| 149 | |
| 150 | function getCompletionsAtPosition( |
| 151 | fileName: string, |
| 152 | position: number, |
| 153 | options: ts.GetCompletionsAtPositionOptions, |
| 154 | ): ts.WithMetadata<ts.CompletionInfo> | undefined { |
| 155 | return withFallback(fileName, (ls) => ls.getCompletionsAtPosition(fileName, position, options)); |
| 156 | } |
| 157 | |
| 158 | function getCompletionEntryDetails( |
| 159 | fileName: string, |
nothing calls this directly
no test coverage detected
searching dependent graphs…