File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ export abstract class BaseTransport implements ITransport {
61
61
* @param options overrides of default transport settings
62
62
* @returns typed response of `TSuccess`, or `TError` result
63
63
*/
64
- abstract async rawRequest (
64
+ abstract rawRequest (
65
65
method : HttpMethod ,
66
66
path : string ,
67
67
queryParams ?: Values ,
@@ -80,7 +80,7 @@ export abstract class BaseTransport implements ITransport {
80
80
* @param {Partial<ITransportSettings> } options transport option overrides
81
81
* @returns {Promise<TSuccess> } the streaming response
82
82
*/
83
- abstract async request < TSuccess , TError > (
83
+ abstract request < TSuccess , TError > (
84
84
method : HttpMethod ,
85
85
path : string ,
86
86
queryParams ?: any ,
@@ -101,7 +101,7 @@ export abstract class BaseTransport implements ITransport {
101
101
* @param {Partial<ITransportSettings> } options transport option overrides
102
102
* @returns {Promise<TSuccess> } the streaming response
103
103
*/
104
- abstract async stream < TSuccess > (
104
+ abstract stream < TSuccess > (
105
105
callback : ( readable : Readable ) => Promise < TSuccess > ,
106
106
method : HttpMethod ,
107
107
path : string ,
You can’t perform that action at this time.
0 commit comments