[X] I have checked the repository for duplicate issues.
What enhancement would you like to see?
Add TSDoc comments to relevant methods in the StreamIn class. TSDoc is used by TypeScript to provide better IntelliSense when using the library in an IDE. TSDoc comments are similar to JSDoc comments, but for TypeScript. They should not be used for type information, but rather used similarly to GoDoc comments in Go.
Using TSDoc we can create IntelliSense such as this within the IDE:
TSDoc should not aim to be verbose enough to be complete documentation. That should be left for our real library documentation. TSDoc should be only be used for quick references and small examples, if applicable.
Checked Existing
What enhancement would you like to see?
Add TSDoc comments to relevant methods in the StreamIn class. TSDoc is used by TypeScript to provide better IntelliSense when using the library in an IDE. TSDoc comments are similar to JSDoc comments, but for TypeScript. They should not be used for type information, but rather used similarly to GoDoc comments in Go.
Using TSDoc we can create IntelliSense such as this within the IDE:
TSDoc should not aim to be verbose enough to be complete documentation. That should be left for our real library documentation. TSDoc should be only be used for quick references and small examples, if applicable.
Any other details to share? (OPTIONAL)
No response