import ViewController from './viewController'; import BranchViewController from './branchViewController'; import ViewControllerType from '../common/constants/viewControllers'; import ConnectionView from '../view/connectionView'; export default class ConnectionViewController extends ViewController { private _startBranch; private _endBranch; private readonly _view; private _lineShape; constructor(parent: BranchViewController); get view(): ConnectionView; get type(): ViewControllerType; get model(): any; init(): void; set lineShape(lineShape: string); get lineShape(): string; get endBranch(): BranchViewController; get startBranch(): BranchViewController; }