/
githubmirror
/
tabby
Обзор
Документация
Войти
/
githubmirror
/
tabby
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
tabby-core/src/api/tabContextMenuProvider.ts
11 строк
337 B
Eugene Pankov
fixed #6164 - added command palette
01 ноя 2022, 19:13
Не верифицирован
01 ноя 2022, 19:13
f094db9
Код
Авторство
О чём код?
import { BaseTabComponent } from '../components/baseTab.component' import { MenuItemOptions } from './menu' /** * Extend to add items to the tab header's context menu */ export abstract class TabContextMenuItemProvider { weight = 0 abstract getItems (tab: BaseTabComponent, tabHeader?: boolean): Promise<MenuItemOptions[]> }