Interface IFileContentSaver
interface IFileContentSaver { save( content: string | Blob | File, fileName?: null | string, ): Promise<void>;} Methods
save
save(content: string | Blob | File, fileName?: null | string): Promise<void> Parameters
- content: string | Blob | File
Optional
fileName: null | string
Returns Promise<void>