Type Alias Neighbours

Neighbours: {
    e: Cell | undefined;
    n: Cell | undefined;
    ne: Cell | undefined;
    nw: Cell | undefined;
    s: Cell | undefined;
    se: Cell | undefined;
    sw: Cell | undefined;
    w: Cell | undefined;
}