Skip to content

Commit

Permalink
fix(ast-spec): make in and out boolean
Browse files Browse the repository at this point in the history
  • Loading branch information
sosukesuzuki committed May 19, 2022
1 parent 6cd5c7e commit 96f0b45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/ast-spec/src/special/TSTypeParameter/spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ export interface TSTypeParameter extends BaseNode {
name: Identifier;
constraint?: TypeNode;
default?: TypeNode;
in?: boolean;
out?: boolean;
in: boolean;
out: boolean;
}

0 comments on commit 96f0b45

Please sign in to comment.