// simple restrictions that MVC impose: The Control has a reference to the View and Model + the View has a reference to the Model and the Controller.It also does not have any Observer implementation in the Model, so that the View can update based on it. import { Model } from "../model/AbstractModel"; import { Controller } from "../controller/AbstractController"; import { Observer } from "../observe/Observer"; export interface View extends Observer { readonly model: Model, readonly element: any }