UNPKG

lgrthms

Version:

Algorithms and data structures for your JavaScript and TypeScript projects 🧑‍💻

7 lines (6 loc) 162 B
interface IPoint { row: number; col: number; } export declare function aStarAlgorithm(start: IPoint, finish: IPoint, matrix: number[][]): any; export {};