[][src]Type Definition meli::terminal::Area

type Area = (Pos, Pos);

An Area consists of two points: the upper left and bottom right corners.

Example:

let new_area = ((0, 0), (1, 1));