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) • 336 B
TypeScript
type ApiVersionsRequest = {};
type ApiVersionsResponse = {
errorCode: number;
versions: {
apiKey: number;
minVersion: number;
maxVersion: number;
}[];
throttleTimeMs: number;
};
export declare const API_VERSIONS: import("../utils/api.js").Api<ApiVersionsRequest, ApiVersionsResponse>;
export {};