@handsontable/angular-wrapper
Version:
Best Data Grid for Angular with Spreadsheet Look and Feel.
14 lines (13 loc) • 454 B
TypeScript
import { ExtendedEditor } from 'handsontable/editors/factory';
export interface KeyboardShortcutConfig {
keys: string[][];
callback: (editorInstance: ExtendedEditor<any>, event: KeyboardEvent) => boolean | void;
group?: string;
runOnlyIf?: () => boolean;
captureCtrl?: boolean;
preventDefault?: boolean;
stopPropagation?: boolean;
relativeToGroup?: string;
position?: 'before' | 'after';
forwardToContext?: any;
}