Files
outline/app/components/RegisterKeyDown.ts
T
Tom Moor bf45e97641 chore: Enforce type import consistency (#10968)
* Update types

* fix circular dep

* type imports

* lint type imports and --fix
2025-12-19 23:07:02 -05:00

19 lines
556 B
TypeScript

import type { KeyFilter, Options } from "~/hooks/useKeyDown";
import useKeyDown from "~/hooks/useKeyDown";
type Props = {
trigger: KeyFilter;
handler: (event: KeyboardEvent) => void;
options?: Options;
};
/**
* This method is a wrapper around the useKeyDown hook to allow easier use in
* class components that have not yet been converted to functions. Do not use
* this method in functional components.
*/
export default function RegisterKeyDown({ trigger, handler, options }: Props) {
useKeyDown(trigger, handler, options);
return null;
}