eurostat-map
    Preparing search index...

    Interface FlowLink

    A flow link between two nodes.

    interface FlowLink {
        source: string | FlowNode;
        target: string | FlowNode;
        value: number;
        originId?: string;
        destId?: string;
        [key: string]: any;
    }

    Indexable

    • [key: string]: any
    Index

    Properties

    source: string | FlowNode

    Source.

    target: string | FlowNode

    Target.

    value: number

    Value.

    originId?: string

    Origin id.

    destId?: string

    Dest id.