redis-smq
Version:
A simple high-performance Redis message queue for Node.js.
8 lines • 434 B
TypeScript
import { ICallback } from 'redis-smq-common';
import { IQueueParams } from '../../queue/index.js';
import { ExchangeAbstract } from '../exchange-abstract.js';
import { ITopicParams } from '../types/exchange.js';
export declare class ExchangeTopic extends ExchangeAbstract<string | ITopicParams> {
getQueues(exchangeParams: string | ITopicParams, cb: ICallback<IQueueParams[]>): void;
}
//# sourceMappingURL=exchange-topic.d.ts.map