см. Это изображение 1 изображение 2 невозможно создать сборку для моего angular 8 выброса проекта Не удается найти имя FilestackTransform
onUploadSuccess(res: object) {
console.log('###uploadSuccess', res);
this.tempData = res;
this.tempUrl = this.tempData.filesUploaded[0].url;
const client = filestack.init(this.apikey); // initialize Filestack Client with your API key
const tr = new FilestackTransform(); // initialize Transformations UI
tr.setConfigKey('output.blob', true); // set Transformations UI to return blob
tr.open(this.tempUrl).then(res => {
client.upload(res).then((uploadRes) => { // upload result of the transformation
this.tempTranssformUrl = JSON.stringify(uploadRes.url, null, 2).split('"');
(<HTMLImageElement>document.querySelector("#result")).src = this.tempTranssformUrl[1];
this.isPicker = false;
})
});
}