kafka-ts
Version:
**KafkaTS** is a Apache Kafka client library for Node.js. It provides both a low-level API for communicating directly with the Apache Kafka cluster and high-level APIs for publishing and subscribing to Kafka topics.
13 lines (12 loc) • 370 B
TypeScript
type SaslAuthenticateRequest = {
authBytes: Buffer;
};
type SaslAuthenticateResponse = {
errorCode: number;
errorMessage: string | null;
authBytes: Buffer;
sessionLifetimeMs: bigint;
tags: Record<number, Buffer>;
};
export declare const SASL_AUTHENTICATE: import("../utils/api").Api<SaslAuthenticateRequest, SaslAuthenticateResponse>;
export {};