An interface describing editor state coordinates.

interface ICoordinate {
    bottom: number;
    left: number;
    right: number;
    top: number;
}

Hierarchy

Properties

Properties

bottom: number
left: number
right: number
top: number