1 2 3 4 5 6 7 8 9
import * as Comlink from "comlink"; const obj = { counter: 0, inc() { this.counter++; }, }; Comlink.expose(obj);