Kirill Garkusha
12/20/2020, 5:08 PMCannot read property context
I see that method signature in JS has additional param - continuation. How should I use it?Marc Knaup
12/20/2020, 5:10 PMsuspend fun directly from JS. Exported functions need to use Promise instead and not be suspend.John O'Reilly
12/20/2020, 5:22 PMKirill Garkusha
12/20/2020, 7:00 PMMarc Knaup
12/20/2020, 7:02 PMsuspend fun in common code and add Promise functions that wrap the suspend fun only for the JS target.Luan Pereira
06/28/2022, 2:31 PM