Current section

Files

Jump to
m3e src m3e stepper_orientation.gleam
Raw

src/m3e/stepper_orientation.gleam

//// StepperOrientation
////
//// This file was generated by m3e/generator
////
//// DO NOT EDIT
////
pub type StepperOrientation {
Horizontal
Vertical
Auto
}
pub fn to_string(level: StepperOrientation) -> String {
case level {
Horizontal -> "horizontal"
Vertical -> "vertical"
Auto -> "auto"
}
}