represents a 2d rectangle. compatible with DOMRect, without its inherited annoying readonly fields

interface ImageCoordSpace {
    channels:
        | 1
        | 2
        | 3
        | 4;
    x: number;
    y: number;
    width: number;
    height: number;
}

Hierarchy (view full)

Properties

Properties

channels:
    | 1
    | 2
    | 3
    | 4
x: number
y: number
width: number
height: number