Skip to content

Instantly share code, notes, and snippets.

@artberri
Created May 28, 2019 17:52
Show Gist options
  • Save artberri/f24c1e9b4dc114c4d4b600b1546302ef to your computer and use it in GitHub Desktop.
Save artberri/f24c1e9b4dc114c4d4b600b1546302ef to your computer and use it in GitHub Desktop.
export abstract class BasePresenter<V> {
protected _view!: V;
protected get view(): V {
return this._view;
}
protected abstract init(): void;
public attach(view: V): void {
this._view = view;
this.init();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment