Skip to content

Commit f0d1e92

Browse files
committed
Beta 6
1 parent 145af51 commit f0d1e92

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "typedoc",
33
"description": "Create api documentation for TypeScript projects.",
4-
"version": "0.24.0-beta.5",
4+
"version": "0.24.0-beta.6",
55
"homepage": "https://typedoc.org",
66
"exports": {
77
".": "./dist/index.js",

src/lib/converter/plugins/CommentPlugin.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -591,6 +591,8 @@ function movePropertyTags(comment: Comment, container: Reflection) {
591591
const propTags = comment.blockTags.filter(
592592
(tag) => tag.tag === "@prop" || tag.tag === "@property"
593593
);
594+
comment.removeTags("@prop");
595+
comment.removeTags("@property");
594596

595597
for (const prop of propTags) {
596598
if (!prop.name) continue;

src/lib/utils/options/declaration.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ export type CommentStyle = (typeof CommentStyle)[keyof typeof CommentStyle];
3030
* An interface describing all TypeDoc specific options. Generated from a
3131
* map which contains more information about each option for better types when
3232
* defining said options.
33+
* @interface
3334
*/
3435
export type TypeDocOptions = {
3536
[K in keyof TypeDocOptionMap]: unknown extends TypeDocOptionMap[K]
@@ -51,6 +52,7 @@ export type TypeDocOptions = {
5152
* Describes all TypeDoc specific options as returned by {@link Options.getValue}, this is
5253
* slightly more restrictive than the {@link TypeDocOptions} since it does not allow both
5354
* keys and values for mapped option types, and does not allow partials of flag values.
55+
* @interface
5456
*/
5557
export type TypeDocOptionValues = {
5658
[K in keyof TypeDocOptionMap]: unknown extends TypeDocOptionMap[K]

0 commit comments

Comments
 (0)