Is there a way to make an annotation 'invoke' two ...
# announcements
f
Is there a way to make an annotation 'invoke' two annotations?
Copy code
annotation class SerialJsName(val name : String) invokes SerialName(name), JsName(name)

class Foo(@SerialJsName("bar") val Bar : Int)
🚫 1