mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 02:48:50 +00:00
10 lines
124 B
TypeScript
10 lines
124 B
TypeScript
import * as Comlink from "comlink";
|
|
const obj = {
|
|
counter: 0,
|
|
inc() {
|
|
this.counter++;
|
|
},
|
|
};
|
|
|
|
Comlink.expose(obj);
|