UNPKG

308 BTypeScriptView Raw
1import { BaseRpcContext } from './base-rpc.context';
2declare type RedisContextArgs = [string];
3export declare class RedisContext extends BaseRpcContext<RedisContextArgs> {
4 constructor(args: RedisContextArgs);
5 /**
6 * Returns the name of the channel.
7 */
8 getChannel(): string;
9}
10export {};