This repository has been archived on 2022-08-19. You can view files and clone it, but cannot push or open issues or pull requests.
hydrogen-web/doc/TS-MIGRATION.md

329 B

Typescript migration

Introduce abstract & override

  • find all methods and getters that throw or are empty in base classes and turn into abstract method or if all methods are abstract, into an interface.
  • change child impls to not call super.method and to add override
  • don't allow implicit override in ts config