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.
30 lines (29 loc) • 705 B
TypeScript
import { IsolationLevel } from './fetch';
export declare const LIST_OFFSETS: import("../utils/api").Api<{
replicaId: number;
isolationLevel: IsolationLevel;
topics: {
name: string;
partitions: {
partitionIndex: number;
currentLeaderEpoch: number;
timestamp: bigint;
}[];
}[];
}, {
_tag: void;
throttleTimeMs: number;
topics: {
name: string;
partitions: {
partitionIndex: number;
errorCode: number;
timestamp: bigint;
offset: bigint;
leaderEpoch: number;
_tag: void;
}[];
_tag: void;
}[];
_tag2: void;
}>;