interface SearchAStarResult {
    distance: number;
    found: boolean;
    path: CollectionReturnValue;
}

Properties

Properties

distance: number
found: boolean