From 9d06e62d8291b86bc83e857b38cd87992a146ea1 Mon Sep 17 00:00:00 2001 From: Allan Eagle Date: Wed, 17 Nov 2021 17:00:25 +0000 Subject: [PATCH] Ensure ResizeTouchEvent and Type are exported from library --- src/index.ts | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/index.ts b/src/index.ts index c685a27..4de4a5d 100644 --- a/src/index.ts +++ b/src/index.ts @@ -6,10 +6,11 @@ import type { OnResizeStart, OnResizeEnd, OnDragEnd, - ResizeMouseEvent + ResizeMouseEvent, + ResizeTouchEvent } from "./core-types"; -export { ResizeHandlePlacement, ResizeType, AnchorType, CenterType } from "./core-types"; +export { ResizeHandlePlacement, ResizeType, AnchorType, CenterType, Type } from "./core-types"; export type { ISpaceContext, @@ -17,7 +18,8 @@ export type { OnResizeStart, OnResizeEnd, OnDragEnd, - ResizeMouseEvent + ResizeMouseEvent, + ResizeTouchEvent } export { useCurrentSpace } from "./core-react";