Current section

Files

Jump to
gserde src internal foo.gleam
Raw

src/internal/foo.gleam

import gleam/option.{type Option}
pub type FooJSON {
Foo(
a_bool: Bool,
b_int: Int,
c_float: Float,
d_two_tuple: #(Int, String),
e_option_int: Option(Int),
f_string_list: List(String),
)
}