Problem
The main StreamClient class has no JSDoc comments. When developers hover over methods like createStream or cancelStream in VS Code, they only see the type signature, not the explanation of parameters or thrown errors.
Task
- Add
@param, @returns, and @throws tags to every public method in StreamClient.
- Add examples using
@example where appropriate (especially for complex config objects).
Problem
The main
StreamClientclass has no JSDoc comments. When developers hover over methods likecreateStreamorcancelStreamin VS Code, they only see the type signature, not the explanation of parameters or thrown errors.Task
@param,@returns, and@throwstags to every public method inStreamClient.@examplewhere appropriate (especially for complex config objects).