Type alias DataProgressCallback

DataProgressCallback: ((total, completed) => void)

Type representing a callback function that reports the progress of a data transfer.

Type declaration

    • (total, completed): void
    • Parameters

      • total: ByteCount

        The total number of bytes to transfer.

      • completed: ByteCount

        The number of bytes that have been transferred.

      Returns void

Generated using TypeDoc