chore: upgrade deps (#10824)

This commit is contained in:
Noel
2025-04-05 13:18:56 +02:00
committed by GitHub
parent 432aba3df7
commit f580de8025
200 changed files with 6756 additions and 12893 deletions

View File

@@ -75,7 +75,7 @@ export enum Meaning {
*
* @public
*/
// eslint-disable-next-line @typescript-eslint/no-empty-interface
export interface IApiItemOptions {}
export interface IApiItemJson {

View File

@@ -490,9 +490,7 @@ export function ApiItemContainerMixin<TBaseClass extends IApiItemConstructor>(
// ^^^
// ```
const firstReferenceToken: ExcerptToken | undefined = extendsType.excerpt.spannedTokens.find(
(token: ExcerptToken) => {
return token.kind === ExcerptTokenKind.Reference && token.canonicalReference;
},
(token: ExcerptToken) => token.kind === ExcerptTokenKind.Reference && token.canonicalReference,
);
if (!firstReferenceToken) {

View File

@@ -77,7 +77,7 @@ export class ApiModel extends ApiItemContainerMixin(ApiItem) {
/**
* @override
*/
// eslint-disable-next-line @typescript-eslint/class-literal-property-style
public override get containerKey(): string {
return '';
}