mirror of
https://github.com/Eugeny/tabby.git
synced 2025-06-27 06:49:53 +00:00
13 lines
381 B
TypeScript
13 lines
381 B
TypeScript
import type { MenuItemConstructorOptions } from 'electron'
|
|
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<MenuItemConstructorOptions[]>
|
|
}
|