Save
12 Sep 20251 minute to read
Save class provide method to save file
```typescript
let blob : Blob = new Blob([’’], { type: ‘text/plain’ });
Save.save(‘fileName.txt’,blob);
Methods
save
Saves the file with specified name and sends the file to client browser
Returns void