Interface IInternalWebWorkerOptions
interface IInternalWebWorkerOptions {
host?: Record<string, Function>;
keepIdleModels?: boolean;
worker: Worker | Promise<Worker>;
}interface IInternalWebWorkerOptions {
host?: Record<string, Function>;
keepIdleModels?: boolean;
worker: Worker | Promise<Worker>;
}
An object that can be used by the web worker to make calls back to the main thread.