Skip to content

Commit

Permalink
fix: Update type imports syntax on gRPC generation (#921)
Browse files Browse the repository at this point in the history
* fix: Update type imports syntax on gRPC generation

* fix: Regenerate integration tests
  • Loading branch information
Zeswen committed Sep 18, 2023
1 parent 75ba907 commit b10ab31
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 25 deletions.
7 changes: 2 additions & 5 deletions integration/grpc-js-use-date-false/grpc-js-use-date-false.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
/* eslint-disable */
import {
import { ChannelCredentials, Client, makeGenericClientConstructor, Metadata } from "@grpc/grpc-js";
import type {
CallOptions,
ChannelCredentials,
Client,
ClientOptions,
ClientUnaryCall,
handleUnaryCall,
makeGenericClientConstructor,
Metadata,
ServiceError,
UntypedServiceImplementation,
} from "@grpc/grpc-js";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
/* eslint-disable */
import {
import { ChannelCredentials, Client, makeGenericClientConstructor, Metadata } from "@grpc/grpc-js";
import type {
CallOptions,
ChannelCredentials,
Client,
ClientOptions,
ClientUnaryCall,
handleUnaryCall,
makeGenericClientConstructor,
Metadata,
ServiceError,
UntypedServiceImplementation,
} from "@grpc/grpc-js";
Expand Down
7 changes: 2 additions & 5 deletions integration/grpc-js-use-date-true/grpc-js-use-date-true.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
/* eslint-disable */
import {
import { ChannelCredentials, Client, makeGenericClientConstructor, Metadata } from "@grpc/grpc-js";
import type {
CallOptions,
ChannelCredentials,
Client,
ClientOptions,
ClientUnaryCall,
handleUnaryCall,
makeGenericClientConstructor,
Metadata,
ServiceError,
UntypedServiceImplementation,
} from "@grpc/grpc-js";
Expand Down
10 changes: 6 additions & 4 deletions integration/grpc-js/simple.ts
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
/* eslint-disable */
import {
CallOptions,
ChannelCredentials,
Client,
ClientDuplexStream,
ClientOptions,
ClientReadableStream,
ClientUnaryCall,
ClientWritableStream,
handleBidiStreamingCall,
handleClientStreamingCall,
handleServerStreamingCall,
handleUnaryCall,
makeGenericClientConstructor,
Metadata,
} from "@grpc/grpc-js";
import type {
CallOptions,
ClientOptions,
ClientUnaryCall,
handleUnaryCall,
ServiceError,
UntypedServiceImplementation,
} from "@grpc/grpc-js";
Expand Down
12 changes: 6 additions & 6 deletions src/generate-grpc-js.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,22 @@ import { messageToTypeName } from "./types";
import { assertInstanceOf, FormattedMethodDescriptor, maybeAddComment, maybePrefixPackage } from "./utils";
import { generateDecoder, generateEncoder } from "./encode";

const CallOptions = imp("CallOptions@@grpc/grpc-js");
const CallOptions = imp("t:CallOptions@@grpc/grpc-js");
const ChannelCredentials = imp("ChannelCredentials@@grpc/grpc-js");
const ClientOptions = imp("ClientOptions@@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 ClientUnaryCall = imp("ClientUnaryCall@@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 handleUnaryCall = imp("handleUnaryCall@@grpc/grpc-js");
const UntypedServiceImplementation = imp("UntypedServiceImplementation@@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");
const Metadata = imp("Metadata@@grpc/grpc-js");
const ServiceError = imp("ServiceError@@grpc/grpc-js");
const ServiceError = imp("t:ServiceError@@grpc/grpc-js");

/**
* Generates a service definition and server / client stubs for the
Expand Down

0 comments on commit b10ab31

Please sign in to comment.