Current section
Files
Jump to
Current section
Files
src/m3e/step_header_position.gleam
//// StepHeaderPosition
////
//// This file was generated by m3e/generator
////
//// DO NOT EDIT
////
pub type StepHeaderPosition {
Above
Below
}
pub fn to_string(level: StepHeaderPosition) -> String {
case level {
Above -> "above"
Below -> "below"
}
}