We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent feabaca commit 171e57bCopy full SHA for 171e57b
lib/processors/jsdoc/lib/ui5/template/publish.js
@@ -2557,7 +2557,8 @@ function validateAPIJSON(api) {
2557
for (const typeParam of symbol.constructor.typeParameters) {
2558
currentTypeParameters[typeParam.name] = typeParam;
2559
}
2560
- // check type oarameters in a 2nd loop so that they can depend on each other
+ // Check type parameters in a 2nd loop so that they can depend on each other.
2561
+ // As of TypeScript 5.9.2, `class Foo<T1 extends T2, T2 = T1> {}´ is valid
2562
2563
checkTypeParameter(typeParam, `type parameter ${typeParam.name} of ${symbol.name}`);
2564
0 commit comments