@nestjs/microservices
Version:
Nest - modern, fast, powerful node.js web framework (@microservices)
13 lines (12 loc) • 339 B
TypeScript
import { RuntimeException } from '@nestjs/core/errors/exceptions/runtime.exception';
export interface RpcDecoratorMetadata {
service: string;
rpc: string;
streaming: string;
}
/**
* @publicApi
*/
export declare class InvalidGrpcDecoratorException extends RuntimeException {
constructor(metadata: RpcDecoratorMetadata);
}