io.scalajs.npm.aws.package.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
import scala.scalajs.js
/**
* aws package object
* @author [email protected]
*/
package object aws {
type AWSCallback[T] = js.Function2[AWSError, T, Any]
type AWSRequest[T] = Request[T, AWSError]
type HttpHeaders = js.Dictionary[String]
type StatusCode = Int
type StatusMessage = String
}