% Auto-generated: do not edit by hand
\name{download}

\alias{download}

\title{Download component}

\description{

}

\usage{
download(id=NULL, data=NULL, isBase64=NULL, isDataURL=NULL,
mimeType=NULL)
}

\arguments{
\item{id}{The ID used to identify this component in Dash callbacks.}

\item{data}{When set, a download is invoked using a Blob.
Accepts an object with the following structure:
      {
        filename: string;
        content: any;
        isBase64: boolean (optional);
        isDataURL: boolean (optional);
        mimeType: string (optional, default: 'text/plan');
      }
Properties in data object take precedent over component props}

\item{isBase64}{Set to true if data.content is a base64 string}

\item{isDataURL}{Set to true if data.content is a data url}

\item{mimeType}{Default value for mimeType.}
}

\value{named list of JSON elements corresponding to React.js properties and their values}

