Represents an interface for a Layer.

interface ILayer {
    tag: LayerType;
    x: number;
    y: number;
}

Implemented by

Properties

Properties

The tag associated with the Layer.

x: number

The x-coordinate of the Layer.

y: number

The y-coordinate of the Layer.