@anvilco/anvil
Version:
Anvil API Client
15 lines (12 loc) • 317 B
JavaScript
export default class UploadWithOptions {
constructor (streamLikeThing, formDataAppendOptions) {
this.streamLikeThing = streamLikeThing
this.formDataAppendOptions = formDataAppendOptions
}
get options () {
return this.formDataAppendOptions
}
get file () {
return this.streamLikeThing
}
}