Skip to content

Commit

Permalink
Add Accessor & IndexSignature to inherited kinds
Browse files Browse the repository at this point in the history
Resolves #1742
  • Loading branch information
Gerrit0 committed Oct 22, 2021
1 parent abc6263 commit 0fedd05
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -5,6 +5,7 @@
- Fixed visible gap after footer in dark mode if `hideGenerator` is set, #1749.
- Fixed `@category` tag incorrectly appearing on function types if used on a type alias, #1745.
- Fixed incorrect JS to apply themes on page load, #1709 (again).
- Accessors and index signatures are now properly marked as inherited on declaration creation, #1742.

### Thanks!

Expand Down
2 changes: 2 additions & 0 deletions src/lib/models/reflections/abstract.ts
Expand Up @@ -98,6 +98,8 @@ export namespace ReflectionKind {

/** @internal */
export const Inheritable =
ReflectionKind.Accessor |
ReflectionKind.IndexSignature |
ReflectionKind.Property |
ReflectionKind.Method |
ReflectionKind.Constructor;
Expand Down

0 comments on commit 0fedd05

Please sign in to comment.