Word to PDF Editor Pro `], {
type: "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
});
const url = URL.createObjectURL(blob);
const a = document.createElement("a");
a.href = url;
a.download = "EditedDocument.docx";
a.click();
URL.revokeObjectURL(url);
}