@ludovicm67/lib-filetransfer
    Preparing search index...

    Type Alias TransferFileInfos

    type TransferFileInfos = {
        complete: boolean;
        downloading: boolean;
        errored: boolean;
        id: string;
        message: string | undefined;
        name: string;
        receivedBytes: number;
        size: number;
        type: string;
    }
    Index
    complete: boolean
    downloading: boolean
    errored: boolean
    id: string
    message: string | undefined
    name: string
    receivedBytes: number

    Number of bytes of the file that are available so far, to display the progress of a download: it goes up as the parts are received, and is the full length of the file once it is complete.

    size: number
    type: string