import App from "../video/App"; import Model from "./Model"; export default class Controller { app: App; model: Model; views: any[]; isStarted: boolean; isInitiated: boolean; constructor(app) { this.app = app; this.model = app.model; this.views = []; } addView(view) { this.views.push(view); } async init() { } }