Interface UploadFileParameters

Parameters for the upload file method.

interface UploadFileParameters {
    config?: UploadFileConfig;
    file: string | Blob;
}

Properties

Properties

Configuration that contains optional parameters.

file: string | Blob

The string path to the file to be uploaded or a Blob object.