/**
 * A 4-tuple containing rectangular bounds. The 4-tuple contains, respectively,
 * the left coordinate, the right coordinate, the top coordinate and the bottom
 * coordinate.
 *
 * @category Helper
 */
export type Bounds = [left: number, right: number, top: number, bottom: number];
