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.
19 lines (18 loc) • 419 B
TypeScript
export declare const DELETE_TOPICS: import("../utils/api").Api<{
topics: {
name: string | null;
topicId: string | null;
}[];
timeoutMs?: number | undefined;
}, {
_tag: void;
throttleTimeMs: number;
responses: {
name: string | null;
topicId: string;
errorCode: number;
errorMessage: string | null;
_tag: void;
}[];
_tag2: void;
}>;