From 49443d4f6e0621591ac1d37f021c474e1decc888 Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Tue, 30 Nov 2021 14:17:51 +0000 Subject: [PATCH] Update TS-MIGRATION.md --- doc/TS-MIGRATION.md | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/doc/TS-MIGRATION.md b/doc/TS-MIGRATION.md index 006b3077..d7ebc7f4 100644 --- a/doc/TS-MIGRATION.md +++ b/doc/TS-MIGRATION.md @@ -1,10 +1,4 @@ -# 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 +# Typescript style guide ## Use `type` rather than `interface` for named parameters and POJO return values.