UNPKG

@nestjs/microservices

Version:

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

13 lines (12 loc) 339 B
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); }