UNPKG

seatmap-painter

Version:

React-based UI tools for creating and painting groups on a provided SVG seatmap

6 lines (3 loc) 235 B
import { Seat } from "react-svg-seatmap"; export type GroupedSeats = Record<string, Seat[]>; // The string key is the group id, and the value is the seats in that group export type { Seat }; // Re-exporting Seat type for convenience