Current section

Files

Jump to
m3e src m3e motion_scheme.gleam
Raw

src/m3e/motion_scheme.gleam

//// MotionScheme
////
//// This file was generated by m3e/generator
////
//// DO NOT EDIT
////
pub type MotionScheme {
Standard
Expressive
}
pub fn to_string(level: MotionScheme) -> String {
case level {
Standard -> "standard"
Expressive -> "expressive"
}
}