Current section

Files

Jump to
gossamer src gossamer binary_type.gleam
Raw

src/gossamer/binary_type.gleam

/// The format binary messages arrive as on a `WebSocket`.
///
/// Unrecognized values use `Other(String)`.
///
pub type BinaryType {
ArrayBuffer
Blob
Other(String)
}