File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -136,7 +136,7 @@ export interface GaxiosResponse<T = any> {
136
136
request : GaxiosXMLHttpRequest ;
137
137
}
138
138
139
- export interface GaxioMultipartOptions {
139
+ export interface GaxiosMultipartOptions {
140
140
headers : Headers ;
141
141
content : string | Readable ;
142
142
}
@@ -181,7 +181,7 @@ export interface GaxiosOptions {
181
181
*/
182
182
maxRedirects ?: number ;
183
183
follow ?: number ;
184
- multipart ?: GaxioMultipartOptions [ ] ;
184
+ multipart ?: GaxiosMultipartOptions [ ] ;
185
185
params ?: any ;
186
186
paramsSerializer ?: ( params : { [ index : string ] : string | number } ) => string ;
187
187
timeout ?: number ;
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ import {URL} from 'url';
21
21
22
22
import {
23
23
FetchResponse ,
24
- GaxioMultipartOptions ,
24
+ GaxiosMultipartOptions ,
25
25
GaxiosError ,
26
26
GaxiosOptions ,
27
27
GaxiosPromise ,
@@ -439,7 +439,7 @@ export class Gaxios {
439
439
* @param {string } boundary the boundary string to be placed between each part.
440
440
*/
441
441
private async * getMultipartRequest (
442
- multipartOptions : GaxioMultipartOptions [ ] ,
442
+ multipartOptions : GaxiosMultipartOptions [ ] ,
443
443
boundary : string
444
444
) {
445
445
const finale = `--${ boundary } --` ;
You can’t perform that action at this time.
0 commit comments