interface TokenPosition {
    elevation: number;
    height: number;
    shape: TokenShapeType;
    width: number;
    x: number;
    y: number;
}

Properties

elevation: number

The elevation in grid units.

height: number

The height in grid spaces (positive).

The shape type (see CONST.TOKEN_SHAPES).

width: number

The width in grid spaces (positive).

x: number

The top-left x-coordinate in pixels (integer).

y: number

The top-left y-coordinate in pixels (integer).