UNPKG

transitive-js

Version:

A tool for generating dynamic stylized transit maps that are easy to understand.

11 lines (10 loc) 320 B
/** * A Renderer subclass for drawing a simplified representation of the graph * itself, i.e. just the edges and vertices. * * @param {Object} the main Transitive object */ export default class WireframeRenderer extends Renderer { constructor(transitive: Object); } import Renderer from "./renderer";