I think I got it... ```typealias InternalRoute = (...
# kotlin-inject
d
I think I got it...
Copy code
typealias InternalRoute = (Route) -> Unit
Copy code
typealias someFunTypealias = (Route) -> Unit

fun someFunTypealias(....) { ... }

interface RoutesModule {
    val internalRoutes: Set<InternalRoute>

    @Provides @IntoSet fun someFunTypealias.provideSomeInternalRoute(): InternalRoute = this
}