angular2-http-file-upload
Version:
Library to support HTTP file uploads for Angular 2
15 lines • 380 B
JavaScript
;
var UploadItem = (function () {
function UploadItem() {
this.method = 'POST';
this.url = '';
this.headers = {};
this.formData = {};
this.withCredentials = false;
this.alias = 'file';
this.file = {};
}
return UploadItem;
}());
exports.UploadItem = UploadItem;
//# sourceMappingURL=upload-item.js.map