UNPKG

react-resizable-panels

Version:

React components for resizable panel groups/layouts

6 lines (4 loc) 301 B
export type Direction = "horizontal" | "vertical"; // The "contextmenu" event is not supported as a PointerEvent in all browsers yet, so MouseEvent still need to be handled export type ResizeEvent = KeyboardEvent | PointerEvent | MouseEvent; export type ResizeHandler = (event: ResizeEvent) => void;