liminal
06/21/2017, 4:17 AMtypealias Dict<V> = Map<String, V>
to be made available to other classesstrelok
06/21/2017, 4:20 AM.kt
fileliminal
06/21/2017, 4:22 AMstrelok
06/21/2017, 4:25 AMtypealias Dict<V> = Map<String, V> // this line can be in any file
data class ClassA(val d: Dict<String>)
com/test/subpackage/SomeOtherFile.kt
import com.test.Dict
data class ClassB(val d: Dict<String>)
liminal
06/21/2017, 4:30 AMstrelok
06/21/2017, 4:32 AM