ParentFormComponent
export class ParentFormComponent implements OnInit<T> { // ERROR Type 'OnInit' is not generic.ts(2315)
// Cannot find name 'T'
...
public currentPage: ParentFormComponent<T>; // ERROR Cannot find name 'T'
UserPerimeterComponent
export class UserPerimeterComponent
extends ParentFormComponent<User> // ERROR Type 'ParentFormComponent' is not generic
implements OnInit
{
an old project was working well in apprenticeship.
I switched to Angular 20 and reinstalled Eslint
suddenly, it gives me a new one at the level of class inheritance.
I don't understand