UNPKG

@eclipse-scout/core

Version:
9 lines 414 B
import { Event, EventMap, KeyStroke, KeyStrokeContext, KeyStrokeManager } from '../index'; export interface KeyStrokeManagerKeyStrokeEvent<T = KeyStrokeManager> extends Event<T> { keyStroke: KeyStroke; keyStrokeContext: KeyStrokeContext; } export interface KeyStrokeManagerEventMap extends EventMap { 'keyStroke': KeyStrokeManagerKeyStrokeEvent; } //# sourceMappingURL=KeyStrokeManagerEventMap.d.ts.map