Skip to content

Commit

Permalink
fix(jsii-reflect): TypeMember is not SourceLocatable (#3778)
Browse files Browse the repository at this point in the history
Fixes #3777

---

By submitting this pull request, I confirm that my contribution is made under the terms of the [Apache 2.0 license].

[Apache 2.0 license]: https://www.apache.org/licenses/LICENSE-2.0
  • Loading branch information
Chriscbr committed Sep 28, 2022
1 parent e3f7d5e commit db809e2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/jsii-reflect/lib/type-member.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ import { Documentable } from './docs';
import { Initializer } from './initializer';
import { Method } from './method';
import { Property } from './property';
import { SourceLocatable } from './source';

export interface TypeMember extends Documentable {
export interface TypeMember extends Documentable, SourceLocatable {
name: string;
abstract: boolean;

Expand Down

0 comments on commit db809e2

Please sign in to comment.