interface IFileContentSaver {
    save(
        content: string | Blob | File,
        fileName?: null | string,
    ): Promise<void>;
}

Implemented by

Methods

Methods

  • Parameters

    • content: string | Blob | File
    • OptionalfileName: null | string

    Returns Promise<void>

MMNEPVFCICPMFPCPTTAAATR