| 38 | } |
| 39 | |
| 40 | export interface QuickFix { |
| 41 | /** Some unique key. Classname works best ;) */ |
| 42 | key: string; |
| 43 | |
| 44 | canProvideFix(info: QuickFixQueryInformation): CanProvideFixResponse; |
| 45 | |
| 46 | provideFix(info: QuickFixQueryInformation): types.Refactoring[]; |
| 47 | } |
| 48 | |
| 49 | /** Utility method. Reason is we want to transact by file path */ |
| 50 | export const getRefactoringsByFilePath = types.getRefactoringsByFilePath; |
no outgoing calls
no test coverage detected