io.scalajs.npm.aws.Progress.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws-s3_sjs0.6_2.12 Show documentation
Show all versions of aws-s3_sjs0.6_2.12 Show documentation
aws-s3 binding for Scala.js
The newest version!
package io.scalajs.npm.aws
import scala.scalajs.js
/**
* Represents the Progress of a HTTP operation
* @author [email protected]
*/
@js.native
trait Progress extends js.Object {
def loaded: Double = js.native
def total: Double = js.native
}