UNPKG

@hailer-oy/birds-eye

Version:

This component library directory contains all the react components for Hailer Bird's Eye! Developing these componets happens [here](https://github.com/KvanttoriOy/birds-eye/tree/master/birds-eye-components), only copy your changes in lib from there to src

10 lines (9 loc) 385 B
import { FunctionDependency, Node } from "../types"; /** * Generates human readable labels for dependencies * TODO: better documentation aka comments and unit tests * * @author Patrik Larsen <patrik.larsen@kvanttori.fi> */ declare const getDependencyLabel: (dependency: FunctionDependency, currentNode: Node, nodes: Node[]) => string; export default getDependencyLabel;