UNPKG

layered-loader

Version:

Data loader with support for caching and fallback data sources

8 lines (7 loc) 432 B
import { RedisGroupNotificationConsumer } from './RedisGroupNotificationConsumer'; import { RedisGroupNotificationPublisher } from './RedisGroupNotificationPublisher'; import { RedisNotificationConfig } from './RedisNotificationFactory'; export declare function createGroupNotificationPair<T>(config: RedisNotificationConfig): { publisher: RedisGroupNotificationPublisher<T>; consumer: RedisGroupNotificationConsumer<T>; };