@eoussama/firemitt
    Preparing search index...

    Type Alias TPos

    Represents a position with x and y coordinates. This type is used to define a two-dimensional position in a coordinate system, typically for graphical elements.

    type TPos = {
        x: number;
        y: number;
    }
    Index

    Properties

    x y

    Properties

    x: number

    The x-coordinate of the position.

    y: number

    The y-coordinate of the position.