Update the template to use the singular form for Event interface.

This commit is contained in:
Benoit Marty 2025-11-07 13:39:56 +01:00
parent cffd4c31c9
commit b37979d003
4 changed files with 7 additions and 7 deletions

View file

@ -2,5 +2,5 @@
// TODO add your ui models. Remove the eventSink if you don't have events.
data class ${NAME}State(
val eventSink: (${NAME}Events) -> Unit
val eventSink: (${NAME}Event) -> Unit
)