UNPKG

@v4fire/core

Version:
18 lines (17 loc) 588 B
/*! * V4Fire Core * https://github.com/V4Fire/Core * * Released under the MIT license * https://github.com/V4Fire/Core/blob/master/LICENSE */ import type { WorkerQueueOptions as SuperWorkerQueueOptions } from '../../../../core/queue/worker/interface'; import type { HashFn } from '../../../../core/queue/merge/interface'; export * from '../../../../core/queue/worker/interface'; export * from '../../../../core/queue/merge/interface'; export interface WorkerQueueOptions<T> extends SuperWorkerQueueOptions { /** * Hash function for a task */ hashFn?: HashFn<T>; }