/
githubmirror
/
tabby
Обзор
Документация
Войти
/
githubmirror
/
tabby
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
tabby-terminal/src/api/contextMenuProvider.ts
12 строк
360 B
Eugene Pankov
separate color schemes per profile - fixes #5885, fixes #4593, fixes #3516, fixes #7457, fixes #765
04 фев 2023, 21:51
Не верифицирован
04 фев 2023, 21:51
69d884e
Код
Авторство
О чём код?
import type { MenuItemOptions } from 'tabby-core' import { BaseTerminalTabComponent } from './baseTerminalTab.component' /** * Extend to add more terminal context menu items * @deprecated */ export abstract class TerminalContextMenuItemProvider { weight: number abstract getItems (tab: BaseTerminalTabComponent<any>): Promise<MenuItemOptions[]> }