| 131 | * Type that can be registered in the VS Code extension host |
| 132 | */ |
| 133 | export interface IExtensionContribution { |
| 134 | register(context: vscode.ExtensionContext): void; |
| 135 | } |
| 136 | |
| 137 | export const IExtensionContribution = Symbol('IExtensionContribution'); |
| 138 |
no outgoing calls
no test coverage detected