Current section
Files
Jump to
Current section
Files
src/m3e/tooltip_touch_gestures.gleam
//// TooltipTouchGestures
////
//// This file was generated:
//// By: m3e/generator version 0.1.0
//// On: 2026-05-05T14:38:23+10:00
////
//// DO NOT EDIT
////
pub type TooltipTouchGestures {
Auto
On
Off
}
pub fn to_string(level: TooltipTouchGestures) -> String {
case level {
Auto -> "auto"
On -> "on"
Off -> "off"
}
}