Interface RelativePoint

If the x or y is a string it is assumed to be a percentage of available space before.

interface RelativePoint {
    x?: string | number;
    y?: string | number;
}

Properties

Properties

x?: string | number
y?: string | number