UNPKG

reakit

Version:

Toolkit for building accessible rich web apps with React

14 lines (11 loc) 260 B
export type Group = { id: string; ref: React.RefObject<HTMLElement>; }; export type Item = { id: string | null; ref: React.RefObject<HTMLElement>; groupId?: Group["id"]; disabled?: boolean; }; export type Orientation = "horizontal" | "vertical";