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

13 lines (12 loc) 510 B
import { Data } from "../../../types"; /** * Starts the simulation of forces between nodes in the workspace map. * Also calls the draw function to draw our map. * * TODO: remove use of any (create typings for renderChartFn in hooks/useD3.ts) * * @author Juhana Kuparinen <juhana.kuparinen@kvanttori.fi> * @author Teemu Salonen <teemu.salonen@kvanttori.fi> */ declare const forceSimulation: (svg: any, data: Data, updateNode: (value: string) => void) => any; export default forceSimulation;