angular-cn/tools/public_api_guard
Dzmitry Shylovich ee747f7d0c refactor(core): change abstract classes for interfaces (#12324)
BREAKING CHANGE: Because all lifecycle hooks are now interfaces
the code that uses 'extends' keyword will no longer compile.

To migrate the code follow the example below:

Before:
```
@Component()
class SomeComponent extends OnInit {}
```
After:
```
@Component()
class SomeComponent implements OnInit {}
```

we don't expect anyone to be affected by this change.

Closes #10083
2017-02-23 18:04:51 -08:00
..
animations/typings refactor(animations): support browser animation rendering (#14578) 2017-02-22 15:14:49 -08:00
common/typings fix(common): do not reference deprecated classes in providers (#14523) (#14523) 2017-02-23 17:23:56 -08:00
compiler/typings build: resolve review comments on flat modules PR and fix more bugs (#14660) 2017-02-23 16:39:44 -08:00
core/typings refactor(core): change abstract classes for interfaces (#12324) 2017-02-23 18:04:51 -08:00
forms/typings perf: distrubute smaller bundled code and include es2015 bundle 2017-02-21 20:48:55 -08:00
http/typings build: resolve review comments on flat modules PR and fix more bugs (#14660) 2017-02-23 16:39:44 -08:00
platform-browser/typings build: resolve review comments on flat modules PR and fix more bugs (#14660) 2017-02-23 16:39:44 -08:00
platform-browser-dynamic/typings build: resolve review comments on flat modules PR and fix more bugs (#14660) 2017-02-23 16:39:44 -08:00
platform-server/typings build: resolve review comments on flat modules PR and fix more bugs (#14660) 2017-02-23 16:39:44 -08:00
platform-webworker/typings perf: distrubute smaller bundled code and include es2015 bundle 2017-02-21 20:48:55 -08:00
platform-webworker-dynamic/typings perf: distrubute smaller bundled code and include es2015 bundle 2017-02-21 20:48:55 -08:00
router/typings perf: distrubute smaller bundled code and include es2015 bundle 2017-02-21 20:48:55 -08:00
upgrade/typings perf: distrubute smaller bundled code and include es2015 bundle 2017-02-21 20:48:55 -08:00