Repository URL to install this package:
Version:
0.2.0-dev.38 ▾
|
import { voidReturnFunction } from '../index.types';
export default function useKeydown(conditionFunction: (e: KeyboardEvent) => boolean, onKeydown: voidReturnFunction, startingElement?: HTMLElement): (e: Event) => void;
export declare function useMetaKeydown(key: KeyboardEvent['key'], onKeydown: voidReturnFunction, startingElement?: HTMLElement): (e: Event) => void;
export declare function useMetaEnter(onMetaEnter: voidReturnFunction, startingElement?: HTMLElement): (e: Event) => void;