Represents a connection or relationship between files. A Connection connects two file:line locations in the workspace. Connections will be rendered as a line or arrow in the visualization. line is optional, in which case the Connection will just connect the files and can be passed just the file Uri. Connections can be between two different files, different lines in the same file, or even connect a file to itself. Connections can only connect files, not folders. If from or to is undefined, the connection will start or end "outside" the visualization.

E.g.

{
from: {file: Uri.file("main.py"), line: 10},
to: {file: Uri.file("tutorial.py"), line: 3}
}

or

{
from: Uri.file("main.py"),
to: Uri.file("tutorial.py")
}

Hierarchy

  • Connection

Indexable

[key: string]: any

Properties

color?: string

CSS color string

from?: Endpoint
tooltip?: string

String to show as tooltip

width?: number

Width of the SVG path

Generated using TypeDoc