comlink
comlink copied to clipboard
Typescript Remote object wrapping not recursively applied
The following code does not appear to compile using [email protected]
interface F{ a : [] }
declare const b: Remote<F>
b.a.length
It appears b.a resolves to Promise<[]> instead of something like Remote<[]>.