ixfx
    Preparing search index...

    Type Alias GridNeighbours

    type GridNeighbours = {
        e: GridCell | undefined;
        n: GridCell | undefined;
        ne: GridCell | undefined;
        nw: GridCell | undefined;
        s: GridCell | undefined;
        se: GridCell | undefined;
        sw: GridCell | undefined;
        w: GridCell | undefined;
    }
    Index

    Properties

    e n ne nw s se sw w

    Properties

    e: GridCell | undefined
    n: GridCell | undefined
    ne: GridCell | undefined
    nw: GridCell | undefined
    s: GridCell | undefined
    se: GridCell | undefined
    sw: GridCell | undefined
    w: GridCell | undefined