UNPKG

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