Skip to content

Commit

Permalink
code
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurfiorette committed Aug 13, 2024
1 parent 883bc47 commit 63fcf57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/NodeParser/ObjectLiteralExpressionNodeParser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export class ObjectLiteralExpressionNodeParser implements SubNodeParser {
return new ObjectProperty(
t.name.getText(),
this.childNodeParser.createType(type, context),
!(t as ts).questionToken,
!(t as any).questionToken,
);
});
}
Expand Down

0 comments on commit 63fcf57

Please sign in to comment.