aboutsummaryrefslogtreecommitdiff
path: root/scripts/apidocs/processing
diff options
context:
space:
mode:
authorrenovate[bot] <29139614+renovate[bot]@users.noreply.github.com>2024-06-22 20:40:40 +0200
committerGitHub <[email protected]>2024-06-22 20:40:40 +0200
commit63177e28e1c306f6bfbe0cce28e2437c6c848518 (patch)
treec2be39f1f621b0db749f164d891a7ce47a13f8d4 /scripts/apidocs/processing
parentb9cd81a7a28fee24bdf98e724fdd460b014b9c49 (diff)
downloadfaker-63177e28e1c306f6bfbe0cce28e2437c6c848518.tar.xz
faker-63177e28e1c306f6bfbe0cce28e2437c6c848518.zip
chore(deps): update dependency typescript to v5.5.2 (#2968)
Co-authored-by: ST-DDT <[email protected]>
Diffstat (limited to 'scripts/apidocs/processing')
-rw-r--r--scripts/apidocs/processing/jsdocs.ts2
1 files changed, 0 insertions, 2 deletions
diff --git a/scripts/apidocs/processing/jsdocs.ts b/scripts/apidocs/processing/jsdocs.ts
index 4a8e5b08..4135e5e6 100644
--- a/scripts/apidocs/processing/jsdocs.ts
+++ b/scripts/apidocs/processing/jsdocs.ts
@@ -31,7 +31,6 @@ export function getTypeParameterTags(jsdocs: JSDoc): Record<string, JSDocTag> {
.getTags()
.filter((tag) => tag.getTagName() === 'template')
.filter((tag) => tag instanceof JSDocTemplateTag)
- .map((tag) => tag as JSDocTemplateTag)
.map((tag) => [tag.getTypeParameters()[0].getName(), tag] as const)
);
}
@@ -42,7 +41,6 @@ export function getParameterTags(jsdocs: JSDoc): Record<string, JSDocTag> {
.getTags()
.filter((tag) => tag.getTagName() === 'param')
.filter((tag) => tag instanceof JSDocParameterTag)
- .map((tag) => tag as JSDocParameterTag)
.map((tag) => [tag.getName(), tag] as const)
);
}