mirror of
https://github.com/Eugeny/tabby.git
synced 2025-06-12 07:29:59 +00:00
17 lines
469 B
TypeScript
17 lines
469 B
TypeScript
import { BaseTerminalTabComponent } from './baseTerminalTab.component'
|
|
|
|
/**
|
|
* Extend to automatically run actions on new terminals
|
|
*/
|
|
export abstract class TerminalDecorator {
|
|
/**
|
|
* Called when a new terminal tab starts
|
|
*/
|
|
attach (terminal: BaseTerminalTabComponent): void { } // eslint-disable-line
|
|
|
|
/**
|
|
* Called before a terminal tab is destroyed
|
|
*/
|
|
detach (terminal: BaseTerminalTabComponent): void { } // eslint-disable-line
|
|
}
|