Represents a transformation that can be applied to the graph as a whole. See BaseGraph.Class.apply.

interface Transformation<G1, G2> {
    apply: ((graph: G1) => G2);
}

Type Parameters

Properties

Properties

apply: ((graph: G1) => G2)