* Shorthand function for get request * @method get * @memberof StreamClient.prototype * @private * @param {AxiosConfig} kwargs * @return {Promise} Promise object
(kwargs: AxiosConfig)
| 749 | * @return {Promise} Promise object |
| 750 | */ |
| 751 | get<T>(kwargs: AxiosConfig) { |
| 752 | return this.doAxiosRequest<T>('GET', kwargs); |
| 753 | } |
| 754 | |
| 755 | /** |
| 756 | * Shorthand function for post request |
no outgoing calls
no test coverage detected