Represents a merged group of Connections, that will be rendered as one line in the visualization. The connections are grouped together based on the merge rules.

Hierarchy

  • MergedConnection

Indexable

[key: string]: any

Properties

bidirectional: boolean

True if this merged connection represents connections going both directions between from and to

color: string
connections: Connection[]

The original connections that were merged. Will be sorted using the order function if one is given.

from?: {
    file: Uri;
    line?: number;
}

The file/folder the rendered connection will show from. This can be a folder when there are deeply nested files which are hidden until the user zooms in. Then connections to those files will show connected to the visible parent folder.

Type declaration

  • file: Uri
  • Optional line?: number
to?: {
    file: Uri;
    line?: number;
}

The file or folder the rendered connection will show to. Can be a folder just like from.

Type declaration

  • file: Uri
  • Optional line?: number
tooltip?: string
width: number

Generated using TypeDoc