UNPKG

gmll

Version:

A generic launcher core for building custom launchers

8 lines (7 loc) 255 B
/// <reference types="node" /> import { Worker, WorkerOptions } from "worker_threads"; /** * @param options options to initalize a worker * @returns a fully created worker instance */ export declare function makeWorker(options: WorkerOptions): Worker;