Skip to content

Commit

Permalink
Merge pull request #106 from aeagle/hotfix/fix-exported-types
Browse files Browse the repository at this point in the history
Ensure ResizeTouchEvent and Type are exported from library
  • Loading branch information
aeagle authored Nov 17, 2021
2 parents 1659a2d + 9d06e62 commit 1baf7fb
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,20 @@ 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,
IPosition,
OnResizeStart,
OnResizeEnd,
OnDragEnd,
ResizeMouseEvent
ResizeMouseEvent,
ResizeTouchEvent
}

export { useCurrentSpace } from "./core-react";

0 comments on commit 1baf7fb

Please sign in to comment.