-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(js): Modified internal request class to use getProperty instead o…
…f .property due to an issue wit Typescript currently generates code for drived class's get method by ignoring the type of the child type completely & directly try and access the property on the parent property, if the property name exposed on the child is different from the parent, then accessing this property in the generated js will obviously give undefined value. TO avoid this, I've explicitly added `getProperty` instead of `get property`
- Loading branch information
1 parent
f09d13a
commit dfc780d
Showing
3 changed files
with
12 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters