/** * 创建一个在worker中运行的算法 * @param type 算法类型 */ declare const createWorker: (type: string) => (...data: any[]) => Promise; export default createWorker;