chore: bump dependencies (#11225)

This commit is contained in:
Almeida
2025-10-31 11:15:45 +00:00
committed by GitHub
parent 178c9cb348
commit fb5c629638
48 changed files with 3157 additions and 3252 deletions

View File

@@ -109,7 +109,6 @@ export class DocumentedClass extends DocumentedItem<Class | DeclarationReflectio
signature.comment?.blockTags?.some((block) => block.tag === '@private' || block.tag === '@internal')
? 'private'
: undefined,
// eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing
abstract: signature.comment?.blockTags?.some((block) => block.tag === '@abstract') || undefined,
deprecated: signature.comment?.blockTags?.some((block) => block.tag === '@deprecated')
? (signature.comment.blockTags

View File

@@ -36,7 +36,6 @@ export class DocumentedMember extends DocumentedItem<DeclarationReflection | Mem
? 'private'
: undefined,
readonly: data.flags.isReadonly,
// eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing
abstract: signature.comment?.blockTags?.some((block) => block.tag === '@abstract') || undefined,
deprecated: signature.comment?.blockTags?.some((block) => block.tag === '@deprecated')
? (signature.comment.blockTags
@@ -89,7 +88,6 @@ export class DocumentedMember extends DocumentedItem<DeclarationReflection | Mem
? 'private'
: undefined,
readonly: base.readonly || !hasSetter,
// eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing
abstract: getter.comment?.blockTags?.some((block) => block.tag === '@abstract') || undefined,
deprecated: getter.comment?.blockTags?.some((block) => block.tag === '@deprecated')
? (getter.comment.blockTags

View File

@@ -43,7 +43,6 @@ export class DocumentedMethod extends DocumentedItem<DeclarationReflection | Met
? 'private'
: undefined,
examples,
// eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing
abstract: signature.comment?.blockTags?.some((block) => block.tag === '@abstract') || undefined,
deprecated: signature.comment?.blockTags?.some((block) => block.tag === '@deprecated')
? (signature.comment.blockTags