Current section
Files
Jump to
Current section
Files
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"
}
}