@@ -25,7 +25,7 @@ import { UploadcareGroup } from './tools/UploadcareGroup'
25
25
import { FileFromOptions , uploadFile } from './uploadFile'
26
26
27
27
import { FileInfo , GroupId , GroupInfo , Token , Url , Uuid } from './api/types'
28
- import { Settings , BrowserFile , NodeFile } from './types'
28
+ import { SupportedFileInput , BrowserFile , NodeFile , Settings } from './types'
29
29
import uploadFileGroup , { GroupFromOptions } from './uploadFileGroup'
30
30
31
31
/**
@@ -55,7 +55,7 @@ export default class UploadClient {
55
55
}
56
56
57
57
base (
58
- file : NodeFile | BrowserFile ,
58
+ file : SupportedFileInput ,
59
59
options : Partial < BaseOptions > = { }
60
60
) : Promise < BaseResponse > {
61
61
const settings = this . getSettings ( )
@@ -115,7 +115,7 @@ export default class UploadClient {
115
115
}
116
116
117
117
multipartUpload (
118
- part : Buffer | Blob ,
118
+ part : BrowserFile | NodeFile ,
119
119
url : MultipartPart ,
120
120
options : Partial < MultipartUploadOptions > = { }
121
121
) : Promise < MultipartUploadResponse > {
@@ -141,7 +141,7 @@ export default class UploadClient {
141
141
}
142
142
143
143
uploadFile (
144
- data : NodeFile | BrowserFile | Url | Uuid ,
144
+ data : SupportedFileInput | Url | Uuid ,
145
145
options : Partial < FileFromOptions > = { }
146
146
) : Promise < UploadcareFile > {
147
147
const settings = this . getSettings ( )
@@ -150,7 +150,7 @@ export default class UploadClient {
150
150
}
151
151
152
152
uploadFileGroup (
153
- data : ( NodeFile | BrowserFile ) [ ] | Url [ ] | Uuid [ ] ,
153
+ data : SupportedFileInput [ ] | Url [ ] | Uuid [ ] ,
154
154
options : Partial < FileFromOptions & GroupFromOptions > = { }
155
155
) : Promise < UploadcareGroup > {
156
156
const settings = this . getSettings ( )
0 commit comments