Current section

Files

Jump to
m3e src m3e step_label_position.gleam
Raw

src/m3e/step_label_position.gleam

//// StepLabelPosition
////
//// This file was generated by m3e/generator
////
//// DO NOT EDIT
////
pub type StepLabelPosition {
Below
End
}
pub fn to_string(level: StepLabelPosition) -> String {
case level {
Below -> "below"
End -> "end"
}
}