aboutsummaryrefslogtreecommitdiff
path: root/test/js/third_party/comlink/worker.fixture.ts
blob: 1cfcfbe9fee500ee6793626e5a3a5c9586544d97 (plain) (blame)
1
2
3
4
5
6
7
8
9
import * as Comlink from "comlink";
const obj = {
  counter: 0,
  inc() {
    this.counter++;
  },
};

Comlink.expose(obj);