mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
60e403bf6d
This fixes an issue where a value would hide the type.
```
export interface Foo {
someMethod(): void;
}
export const Foo: Function = ...;
```
In the above example the `Foo` constant will hide the `interface Foo` symbol.
This change properly saves the interface in addition to the type.
PR Close #27223