Open vsund opened 6 years ago
In src/network.js there's an import of [form-data](). tsc complains about incompatible types at its only usage.
src/network.js
form-data
tsc
When I remove the dependency tsc says it's fine. Is this dependency purposely in there?
Yeah -- it's required for submitting that request as a form submission (i.e., multipart/form-data) -- the FormData object is present in many browsers, but its not in NodeJS, so we needed to add it.
multipart/form-data
In
src/network.js
there's an import of [form-data
]().tsc
complains about incompatible types at its only usage.When I remove the dependency
tsc
says it's fine. Is this dependency purposely in there?