Data contained in this graph type.

interface Data {
    __lara_flow__flow_graph: {
        functions: Record<string, string>;
        version: "1";
    };
}

Hierarchy (view full)

Properties

__lara_flow__flow_graph: {
    functions: Record<string, string>;
    version: "1";
}

Type declaration

  • functions: Record<string, string>

    Maps function name to its node id. A Record is used instead of a Map so that it can be serialized.

  • version: "1"