Interface SubjectPosition

The subject datum should at a minimum expose x and y properties, so that the relative position of the subject and the pointer can be preserved during the drag gesture.

interface SubjectPosition {
    x: number;
    y: number;
}

Properties

x y

Properties

x: number

x-coordinate

y: number

y-coordinate