reakit
Version:
Toolkit for building accessible rich web apps with React
13 lines (12 loc) • 326 B
TypeScript
/// <reference types="react" />
export declare type Group = {
id: string;
ref: React.RefObject<HTMLElement>;
};
export declare type Item = {
id: string | null;
ref: React.RefObject<HTMLElement>;
groupId?: Group["id"];
disabled?: boolean;
};
export declare type Orientation = "horizontal" | "vertical";