UNPKG

@nestjs/microservices

Version:

Nest - modern, fast, powerful node.js web framework (@microservices)

14 lines (13 loc) 322 B
import { BaseRpcContext } from './base-rpc.context'; type RedisContextArgs = [string]; /** * @publicApi */ export declare class RedisContext extends BaseRpcContext<RedisContextArgs> { constructor(args: RedisContextArgs); /** * Returns the name of the channel. */ getChannel(): string; } export {};