Interface CameraPosition

Represents a camera position with x and y coordinates.

interface CameraPosition {
    x: null | number;
    y: null | number;
}

Properties

x y

Properties

x: null | number
y: null | number