Type alias NavigatorParams<T>
NavigatorParams<T>: { init: { VISITED: T; charDir: Direction; cur: [number, number]; }; matrix: T[][]; onMove: ((cur) => void); turning: Turning; }
Type declaration
-
init: {
VISITED: T;
charDir: Direction;
cur: [number, number];
}
-
VISITED: T
-
-
cur: [number, number]
-
matrix: T[][]
-
onMove: ((cur) => void)
-