1
0
mirror of https://github.com/Eugeny/tabby.git synced 2025-07-12 14:29:55 +00:00
tabby/terminus-terminal/src/api/contextMenuProvider.ts
2020-01-28 21:39:02 +03:00

12 lines
331 B
TypeScript

import { BaseTerminalTabComponent } from './baseTerminalTab.component'
/**
* Extend to add more terminal context menu items
* @deprecated
*/
export abstract class TerminalContextMenuItemProvider {
weight: number
abstract async getItems (tab: BaseTerminalTabComponent): Promise<Electron.MenuItemConstructorOptions[]>
}