Stupid question, if you use typealias, do you have...
# android
l
Stupid question, if you use typealias, do you have one for mutable type and one for the non-mutable counterpart like:
Copy code
typealias Parameter = Map<WebKey, ByteArray>
typealias MutableParameter = MutableMap<WebKey, ByteArray>
or do you just define the mutable typealias and convert the type to its counterpart at the right time?
k
Two separate ones
👍 1