Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixup! fix: use gRPC Client type over any
  • Loading branch information
pichlermarc committed Apr 11, 2024
commit c36f785068385471042bf3ba70931fae3cbbd25c
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,8 @@ export class GrpcExporterTransport implements IExporterTransport {
});
}

// Using `any` as the gRPC client constructor is created on runtime, so we don't have any types for it.
// Using `any` as the gRPC client constructor is created on runtime,
// so we don't have any types for the resulting client.
(this._client as any).export(
buffer,
this._metadata,
Expand Down