Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: problem with verbatimModuleSyntax for grpc-js #1132

Merged
merged 4 commits into from
Nov 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
15 changes: 5 additions & 10 deletions integration/grpc-js/simple.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions integration/nestjs-metadata-grpc-js/hero.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions src/generate-grpc-js.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ const CallOptions = imp("t:CallOptions@@grpc/grpc-js");
const ChannelCredentials = imp("ChannelCredentials@@grpc/grpc-js");
const ClientOptions = imp("t:ClientOptions@@grpc/grpc-js");
const Client = imp("Client@@grpc/grpc-js");
const ClientDuplexStream = imp("ClientDuplexStream@@grpc/grpc-js");
const ClientReadableStream = imp("ClientReadableStream@@grpc/grpc-js");
const ClientDuplexStream = imp("t:ClientDuplexStream@@grpc/grpc-js");
const ClientReadableStream = imp("t:ClientReadableStream@@grpc/grpc-js");
const ClientUnaryCall = imp("t:ClientUnaryCall@@grpc/grpc-js");
const ClientWritableStream = imp("ClientWritableStream@@grpc/grpc-js");
const handleBidiStreamingCall = imp("handleBidiStreamingCall@@grpc/grpc-js");
const handleClientStreamingCall = imp("handleClientStreamingCall@@grpc/grpc-js");
const handleServerStreamingCall = imp("handleServerStreamingCall@@grpc/grpc-js");
const ClientWritableStream = imp("t:ClientWritableStream@@grpc/grpc-js");
const handleBidiStreamingCall = imp("t:handleBidiStreamingCall@@grpc/grpc-js");
const handleClientStreamingCall = imp("t:handleClientStreamingCall@@grpc/grpc-js");
const handleServerStreamingCall = imp("t:handleServerStreamingCall@@grpc/grpc-js");
const handleUnaryCall = imp("t:handleUnaryCall@@grpc/grpc-js");
const UntypedServiceImplementation = imp("t:UntypedServiceImplementation@@grpc/grpc-js");
const makeGenericClientConstructor = imp("makeGenericClientConstructor@@grpc/grpc-js");
Expand Down
Loading