FrontPanel Platform API - v6.0.0
    Preparing search index...

    Type Alias DataProgressCallback

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

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

    Type Declaration

      • (total: ByteCount, completed: ByteCount): void
      • Parameters

        • total: ByteCount

          The total number of bytes to transfer.

        • completed: ByteCount

          The number of bytes that have been transferred.

        Returns void