mirror of
https://github.com/denoland/deno.git
synced 2024-11-13 16:26:08 -05:00
9dfebbc949
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> Co-authored-by: LE GOFF Vincent <g_n_s@hotmail.fr>
14 lines
364 B
TypeScript
14 lines
364 B
TypeScript
const jsWorker = new Worker("./tests/subdir/test_worker.js");
|
|
const tsWorker = new Worker("./tests/subdir/test_worker.ts");
|
|
|
|
tsWorker.onmessage = (e): void => {
|
|
console.log("Received ts: " + e.data);
|
|
};
|
|
|
|
jsWorker.onmessage = (e): void => {
|
|
console.log("Received js: " + e.data);
|
|
|
|
tsWorker.postMessage("Hello World");
|
|
};
|
|
|
|
jsWorker.postMessage("Hello World");
|