WorkerExecutor import { WorkerExecutor } from "destack:runtime"; Worker executor selection. export enum WorkerExecutor { Managed = 1, DedicatedThread = 2, } language/library/src/runtime/world.ds:47:52 Variants Managed = 1 Let the runtime choose the executor. DedicatedThread = 2 Run this worker on one dedicated host thread.