UNPKG

fp-search-algorithms

Version:

Functional Programming Style Search Algorithms and Unordered Containers

4 lines (3 loc) 153 B
import type { HashMap } from '../../structures/hashMap'; /** @internal */ export declare const createPath: <T>(prevMap: HashMap<T, T>, final: T) => T[];