You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was wondering if it would be possible to have a transformer that converts suspend fun foo(): Result<String>
to fun foo(): Promise<String>
instead of fun foo(): Promise<Result<String>>