UNPKG

ng2-json-editor

Version:

Angular2 component for editing large json documents

12 lines (11 loc) 266 B
import { ShortcutActionFunction } from './shortcut-action-function'; export interface Shortcut { /** * Keystroke example: 'ctrl+t' */ key: string; /** * Function to be executed during keystore */ action: ShortcutActionFunction; }