"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.setChild = setChild; exports.child = void 0; // This file is imported by both the WorkerFarm and child implementation. // When a worker is inited, it sets the state in this file. // This way, WorkerFarm can access the state without directly importing the child code. let child = null; exports.child = child; function setChild(c) { exports.child = child = c; }