(
fileName: string,
positionOrRange: number | ts.TextRange,
refactorName: string,
reportProgress: ApplyRefactoringProgressFn,
)
| 262 | } |
| 263 | |
| 264 | function applyRefactoring( |
| 265 | fileName: string, |
| 266 | positionOrRange: number | ts.TextRange, |
| 267 | refactorName: string, |
| 268 | reportProgress: ApplyRefactoringProgressFn, |
| 269 | ): Promise<ApplyRefactoringResult | undefined> { |
| 270 | return ngLS.applyRefactoring(fileName, positionOrRange, refactorName, reportProgress); |
| 271 | } |
| 272 | |
| 273 | function getCodeFixesAtPosition( |
| 274 | fileName: string, |
nothing calls this directly
no test coverage detected