Test/node_modules/@radix-ui/react-use-escape-keydown/dist/index.d.ts
2026-04-09 22:54:00 +07:00

6 lines
202 B
TypeScript

/**
* Listens for when the escape key is down
*/
declare function useEscapeKeydown(onEscapeKeyDownProp?: (event: KeyboardEvent) => void, ownerDocument?: Document): void;
export { useEscapeKeydown };