/**
 * A 4-tuple containing a rectangle. The 4-tuple contains, respectively, the x
 * coordinate, the y coordinate, the width and the height.
 *
 * @category Helper
 */
export type Rect = [x: number, y: number, width: number, height: number];
