tabby/terminus-core/api/hotkeyProvider.ts
Eugene Pankov 0ea346a6ae wip
2017-04-11 02:22:48 +02:00

9 lines
155 B
TypeScript

export interface IHotkeyDescription {
id: string,
name: string,
}
export abstract class HotkeyProvider {
hotkeys: IHotkeyDescription[] = []
}