@metacell/geppetto-meta-ui
Version:
React components from geppetto-meta to create neuroscience applications and visualize data.
17 lines (16 loc) • 398 B
TypeScript
declare function isEmptyObject(keys: any): boolean;
declare const MAX_DELTA: 0.2;
declare const CLAMP_VELOCITY: 0.00001;
declare const KEYS: string[];
declare const KEYCODE_TO_CODE: {
'38': string;
'37': string;
'40': string;
'39': string;
'87': string;
'65': string;
'83': string;
'68': string;
};
declare const bind: any;
declare const shouldCaptureKeyEvent: any;