You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
437 B
TypeScript
10 lines
437 B
TypeScript
import { WorkerInterface } from '../worker_interface';
|
|
import { join } from 'path';
|
|
|
|
const utilWorkerPath = join('./', 'ts', 'webworker', 'workers', 'util.worker.js'); //app.getAppPath()
|
|
const utilWorkerInterface = new WorkerInterface(utilWorkerPath, 3 * 60 * 1000); //{ type: 'module' }
|
|
|
|
export const callUtilsWorker = async (fnName: string, ...args: any): Promise<any> => {
|
|
return utilWorkerInterface.callWorker(fnName, ...args);
|
|
};
|