Current section

Files

Jump to
gossamer src gossamer request_mode.gleam
Raw

src/gossamer/request_mode.gleam

/// The CORS mode for a `Request`, controlling how cross-origin requests
/// are handled.
///
/// Unrecognized values use `Other(String)`.
///
pub type RequestMode {
Cors
Navigate
NoCors
SameOrigin
Other(String)
}