Run prettier on 2 non pretty files

This commit is contained in:
Nir Gazit
2021-01-10 12:05:39 +02:00
parent d75b149004
commit 428a503562
2 changed files with 4 additions and 4 deletions
+3 -1
View File
@@ -28,5 +28,7 @@ export const kafkaApiRef = createApiRef<KafkaApi>({
export interface KafkaApi {
getTopicOffsets(topic: string): Promise<TopicOffsetsResponse>;
getConsumerGroupOffsets(consumerGroup: string): Promise<ConsumerGroupOffsetsResponse>;
getConsumerGroupOffsets(
consumerGroup: string,
): Promise<ConsumerGroupOffsetsResponse>;
}