const response = await axios.request(options);
var blob = new Blob([response.data], {type: "application/octet-stream"});
FileSaver.saveAs(blob,"helloworld.pdf");
FileSaver.saveAs(blob,"helloworld.txt") file is working but when i try to download pdf file it download blank pdf file. Can anyone please help me ?