Subba Rao G
12/30/2021, 5:11 AMVampire
12/30/2021, 8:35 AMturansky
12/30/2021, 12:32 PMshaktiman_droid
12/30/2021, 3:00 PMBig Chungus
12/31/2021, 11:29 AMNikola Milovic
01/04/2022, 8:21 AMBoolean | Number | String
? I am trying to write bindings for Motion-Framer (unsuccessfully, this is the most difficult library I've seen in terms of typing), and the majority of its values can be multiple types. This forces me into dynamic. Also, kinda a bummer that dynamic and jsObject cannot work together so that a dynamic value can have a jsObject with any values.Big Chungus
01/04/2022, 8:22 AMBig Chungus
01/04/2022, 8:23 AMBig Chungus
01/04/2022, 8:27 AMAny
type would work as wellBig Chungus
01/04/2022, 8:29 AMexternal val window: dynamic
fun main() {
println(window.location)
}