@grabjs/superapp-sdk
    Preparing search index...

    Type Alias DownloadFileRequest

    Request parameters for downloading a file via native bridge.

    {
    fileUrl: 'https://example.com/report.pdf',
    fileName: 'report.pdf'
    }
    type DownloadFileRequest = {
        fileName: string;
        fileUrl: string;
    }
    Index

    Properties

    Properties

    fileName: string

    The desired name for the downloaded file.

    fileUrl: string

    The URL of the file to download.