@awsui/components-react
Version:
On July 19th, 2022, we launched [Cloudscape Design System](https://cloudscape.design). Cloudscape is an evolution of AWS-UI. It consists of user interface guidelines, front-end components, design resources, and development tools for building intuitive, en
22 lines • 715 B
TypeScript
import { BaseKeyDetail, CancelableEventHandler } from '../../../events';
interface UseMenuKeyboard {
(inputProps: {
goUp: () => void;
goDown: () => void;
selectOption: () => void;
goHome: () => void;
goEnd: () => void;
closeDropdown: () => void;
preventNativeSpace?: boolean;
}): CancelableEventHandler<BaseKeyDetail>;
}
export declare const useMenuKeyboard: UseMenuKeyboard;
interface UseTriggerKeyboard {
(inputProps: {
openDropdown: () => void;
goHome: () => void;
}): CancelableEventHandler<BaseKeyDetail>;
}
export declare const useTriggerKeyboard: UseTriggerKeyboard;
export {};
//# sourceMappingURL=use-keyboard.d.ts.map