• // TEST: downloadFile Download a file in memory to the user's computer

    Property

    The name of the file

    Property

    The actual file itself as a Uint8Array

    Property

    The mime type of the file

    Returns

    The data URL. This is a string representation that can be used anywhere the original file would be used.

    Parameters

    • params: {
          data: Uint8Array;
          fileName: string;
          mimeType: string;
      }
      • data: Uint8Array
      • fileName: string
      • mimeType: string

    Returns void

Generated using TypeDoc