UNPKG

stiks

Version:

Node bundling & workflow utility for building Node apps.

9 lines (8 loc) 235 B
import { IGroupedQueue } from './interfaces'; /** * Create * : Creates a new Grouped Queue. * * @param queues the sub queue names to be run. */ export declare function createQueue(...queues: (string | string[])[]): IGroupedQueue;