// content assist of Component only shows the text "import Component"
// instead of API-Documentation of "Component"
import { Component } from '@angular/core';
@Component({
selector: 'my-app',
template: '<h1>My First Angular App</h1>'
})
export class AppComponent { }
Expected behavior:
Content Assist should provide API-Documentaion for the actual object.
This is not a problem anymore in Typescript 4.9.5, VS Code 1.87.1 and Angular 15. I don't think has been a problem in last 4 years at least when using VS Code.
TypeScript Version: 2.0.6 Angular Version: 2.1.1
Code
Expected behavior: Content Assist should provide API-Documentaion for the actual object.
Actual behavior: