UNPKG

@euriklis/ds-architect

Version:

`@euriklis/ds-architect` is a modular and extensible library that provides a rich ecosystem for graph and network-based data structures. Designed with both academic rigor and practical application in mind, this library offers powerful graph algorithms and

5 lines (4 loc) 285 B
import type { SecureStoreType } from "../../../Types"; import { AVLTree } from "../../AVL"; import type { LinkedDataNode } from "../../DataNode"; export declare const GenerateMap: <T>(secureStore: SecureStoreType) => Map<string, LinkedDataNode<T>> | AVLTree<LinkedDataNode<T>> | null;