handsontable
Version:
Handsontable is a JavaScript Data Grid available for React, Angular and Vue.
12 lines (10 loc) • 359 B
TypeScript
import { Context } from './context';
export interface ShortcutManager {
addContext(contextName: string): Context;
getActiveContextName(): string;
getContext(contextName: string): Context | undefined;
getOrCreateContext(contextName: string): Context;
setActiveContextName(contextName: string): void;
isCtrlPressed(): boolean;
destroy(): void;
}