An interface describing anchor coordinates.

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

Hierarchy

  • Pick<DOMRect, "left" | "right" | "top" | "bottom">
    • IAnchor

Properties

Properties

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