@v4fire/core
Version:
V4Fire core library
21 lines (17 loc) • 531 B
text/typescript
/*!
* 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>;
}