kafka-nestjs
Version:
A structured Kafka integration for NestJS inspired by BullMQ, offering decorators, modular configuration, and a scalable consumer/producer architecture.
15 lines (14 loc) • 411 B
TypeScript
import { InternalServerErrorException } from '@nestjs/common';
interface ServerExceptionOptions {
information: {
message: string;
identifier: string;
};
}
export declare class ServerException extends InternalServerErrorException {
constructor(options: ServerExceptionOptions);
}
export declare class UnHandledServerException extends ServerException {
constructor();
}
export {};