* Shorthand function for post request * @method post * @memberof StreamClient.prototype * @private * @param {AxiosConfig} kwargs * @return {Promise} Promise object
(kwargs: AxiosConfig)
| 761 | * @return {Promise} Promise object |
| 762 | */ |
| 763 | post<T>(kwargs: AxiosConfig) { |
| 764 | return this.doAxiosRequest<T>('POST', kwargs); |
| 765 | } |
| 766 | |
| 767 | /** |
| 768 | * Shorthand function for delete request |
no outgoing calls
no test coverage detected