Does stability modifiers work over type aliases? I...
# compose
s
Does stability modifiers work over type aliases? I.e. if I mark
kotlinx.datetime.DayOfWeek
as stable, and that is just a type alias for
java.time.DayOfWeek
on the JVM, will that still be considered stable by the Compose compiler + runtime, or should I also mark
java.time.DayOfWeek
as stable? (Talking about marking them as stable in a stability config file here, of course.)