Mihai Voicescu
05/23/2022, 1:20 PMany
in TS declarations in 1.6.20
Anybody know a fix for this?
EG:
@ExperimentalJsExport
@JsExport
fun test(): Promise<JSClient> {
TODO()
}
@ExperimentalJsExport
@JsExport
fun useClient(): JSClient? {
compiles to
export function test(): any/* Promise<JSClient> */;
export function useClient(): Nullable<JSClient>;
christophsturm
05/23/2022, 2:03 PMhfhbd
05/23/2022, 2:13 PMMichael Friend
05/23/2022, 2:49 PM