UNPKG

ag-charts-community

Version:

Advanced Charting / Charts supporting Javascript / Typescript / React / Angular / Vue

8 lines (7 loc) 373 B
type KeyAction = { name: KeyActionName; activatesFocusIndicator: boolean; }; type KeyActionName = 'arrowdown' | 'arrowleft' | 'arrowright' | 'arrowup' | 'home' | 'end' | 'delete' | 'undo' | 'redo' | 'submit' | 'zoomin' | 'zoomout' | 'panxleft' | 'panxright'; export declare function mapKeyboardEventToAction(event: KeyboardEvent): KeyAction | undefined; export {};