@kiwicom/orbit-components
Version:
Orbit-components is a React component library which provides developers with the easiest possible way of building Kiwi.com’s products.
11 lines (7 loc) • 328 B
TypeScript
import * as Common from "../../common/common";
type Event = Common.Event<React.SyntheticEvent<HTMLDivElement> | React.KeyboardEvent<HTMLElement>>;
declare const HandleKeyDown: (
onClick?: Event,
action?: () => void,
) => (ev: React.KeyboardEvent<HTMLElement>) => void;
export { HandleKeyDown, HandleKeyDown as default };