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