Colton Idle
09/30/2023, 9:26 PM@Serializable
typealias BOOP = String
ephemient
09/30/2023, 11:20 PMtypealias BOOP = @Serializable String
Colton Idle
09/30/2023, 11:38 PM@Serializable
data class Thing(val boop: BOOP)
typealias BOOP = String
thanks @ephemientephemient
10/01/2023, 12:17 AMString
there's no need anywaytypealias SerializableFoo = @Serializable(with = ExternalFooSerializer::class) Foo
or other more meaningful annotationsBen Woodworth
10/01/2023, 3:01 AM