mirror of
https://github.com/Eugeny/tabby.git
synced 2025-10-05 22:44:55 +00:00
11 lines
316 B
TypeScript
11 lines
316 B
TypeScript
import { BaseTerminalTabComponent } from './baseTerminalTab.component'
|
|
|
|
/**
|
|
* Extend to add more terminal context menu items
|
|
*/
|
|
export abstract class TerminalContextMenuItemProvider {
|
|
weight: number
|
|
|
|
abstract async getItems (tab: BaseTerminalTabComponent): Promise<Electron.MenuItemConstructorOptions[]>
|
|
}
|