UNPKG

react-orchestra

Version:

A toolbox to build interactive and smart instruments on the web and mobile.

11 lines (10 loc) 293 B
import React from "react"; declare type KeyBindingProps = { keyName: string; onKeyDown?: (...args: any[]) => any; onKeyUp?: (...args: any[]) => any; }; export default class KeyBinding extends React.Component<KeyBindingProps, {}> { render(): JSX.Element; } export {};