mirror of
https://github.com/Eugeny/tabby.git
synced 2025-06-10 22:50:04 +00:00
9 lines
155 B
TypeScript
9 lines
155 B
TypeScript
export interface IHotkeyDescription {
|
|
id: string,
|
|
name: string,
|
|
}
|
|
|
|
export abstract class HotkeyProvider {
|
|
hotkeys: IHotkeyDescription[] = []
|
|
}
|