From d288bd43085680c1f56c9856f7beca4f92f7b4e6 Mon Sep 17 00:00:00 2001 From: Daniele Lubrano Date: Mon, 21 Mar 2022 13:42:18 +0100 Subject: [PATCH] feature: exposing to default export common useful types --- src/index.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/index.ts b/src/index.ts index f469982..a37c1b6 100644 --- a/src/index.ts +++ b/src/index.ts @@ -12,3 +12,11 @@ export { default as useProcessKey } from './hooks/use-process-key'; const FocusRoot = FocusContext.FocusRoot; export { FocusRoot }; + +export type { + LRUDEvent, + FocusEvent, + MoveEvent, + GridMoveEvent, + FocusNodeProps, +} from './types';