mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
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
|
||
|---|---|---|
| .. | ||
| fixtures | ||
| bootstrap.ts | ||
| cli_e2e_test.ts | ||
| cli_unit_test.ts | ||
| helpers.ts | ||
| integration_test.ts | ||
| unit_test.ts | ||