From c1b5ebd8f6f0afd4e1ccdd9f161ad2ac9c151d22 Mon Sep 17 00:00:00 2001 From: Gerrit Birkeland Date: Wed, 15 Mar 2023 20:52:22 -0600 Subject: [PATCH] Fix #2187 --- CHANGELOG.md | 1 + tsdoc.json | 8 ++++++++ 2 files changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e9c0045b..e6d8db5b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ - Fixed a bug where optional properties were not appropriately marked as optional, #2200. - Fixed shifted navigation pane on devices 1024px wide, #2191. +- Add missing `@private` and `@protected` tags to `typedoc/tsdoc.json`, #2187. ### Thanks! diff --git a/tsdoc.json b/tsdoc.json index 1dababd64..a189eb652 100644 --- a/tsdoc.json +++ b/tsdoc.json @@ -66,6 +66,14 @@ "tagName": "@linkplain", "syntaxKind": "block", "allowMultiple": true + }, + { + "tagName": "@private", + "syntaxKind": "modifier" + }, + { + "tagName": "@protected", + "syntaxKind": "modifier" } ] }