1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
/b.js(1,17): error TS8026: Expected A<T> type arguments; provide these with an '@extends' tag.
/b.js(4,15): error TS2314: Generic type 'A<T>' requires 1 type argument(s).
/b.js(8,15): error TS2314: Generic type 'A<T>' requires 1 type argument(s).
==== /a.d.ts (0 errors) ====
declare class A<T> { x: T; }
==== /b.js (3 errors) ====
class B extends A {}
~
!!! error TS8026: Expected A<T> type arguments; provide these with an '@extends' tag.
new B().x;
/** @augments A */
~
!!! error TS2314: Generic type 'A<T>' requires 1 type argument(s).
class C extends A { }
new C().x;
/** @augments A<number, number, number> */
~~~~~~~~~~~~~~~~~~~~~~~~~
!!! error TS2314: Generic type 'A<T>' requires 1 type argument(s).
class D extends A {}
new D().x;
|