| 61 | type CommandType = 'command' | 'TextEditorCommand'; |
| 62 | |
| 63 | interface ScmCommand { |
| 64 | commandId: string; |
| 65 | key: string; |
| 66 | method: Function; |
| 67 | type: CommandType; |
| 68 | } |
| 69 | |
| 70 | const Commands: ScmCommand[] = []; |
| 71 | const managerCleanUps: Disposable[] = []; |
nothing calls this directly
no outgoing calls
no test coverage detected