| 1306 | * An addon that can provide additional functionality to the terminal. |
| 1307 | */ |
| 1308 | export interface ITerminalAddon extends IDisposable { |
| 1309 | /** |
| 1310 | * This is called when the addon is activated. |
| 1311 | */ |
| 1312 | activate(terminal: Terminal): void; |
| 1313 | } |
| 1314 | |
| 1315 | /** |
| 1316 | * An object representing a range within the viewport of the terminal. |
nothing calls this directly
no outgoing calls
no test coverage detected