aboutsummaryrefslogtreecommitdiff
path: root/scripts/apidocs/processing/jsdocs.ts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/apidocs/processing/jsdocs.ts')
-rw-r--r--scripts/apidocs/processing/jsdocs.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/apidocs/processing/jsdocs.ts b/scripts/apidocs/processing/jsdocs.ts
index 41c1b84a..55dea867 100644
--- a/scripts/apidocs/processing/jsdocs.ts
+++ b/scripts/apidocs/processing/jsdocs.ts
@@ -69,6 +69,10 @@ export function getSeeAlsos(jsdocs: JSDoc): string[] {
return getTagsFromJSDoc(jsdocs, 'see', true);
}
+export function getRemarks(jsdocs: JSDoc): string[] {
+ return getTagsFromJSDoc(jsdocs, 'remark');
+}
+
function getOptionalTagFromJSDoc(
jsdocs: JSDoc,
type: string