* Shorthand function for put request * @method put * @memberof StreamClient.prototype * @private * @param {AxiosConfig} kwargs * @return {Promise} Promise object
(kwargs: AxiosConfig)
| 785 | * @return {Promise} Promise object |
| 786 | */ |
| 787 | put<T>(kwargs: AxiosConfig) { |
| 788 | return this.doAxiosRequest<T>('PUT', kwargs); |
| 789 | } |
| 790 | |
| 791 | /** |
| 792 | * create a user token |
no outgoing calls
no test coverage detected