Skip to content

Commit

Permalink
feat(microservices): removes @grpc/grpc-js import
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronschweig committed Oct 29, 2021
1 parent 76f2918 commit 3b74293
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import { RmqUrl } from '../external/rmq-url.interface';
import { CustomTransportStrategy } from './custom-transport-strategy.interface';
import { Deserializer } from './deserializer.interface';
import { Serializer } from './serializer.interface';
import type { PackageDefinition } from '@grpc/proto-loader';

export type MicroserviceOptions =
| GrpcOptions
Expand Down Expand Up @@ -55,7 +54,7 @@ export interface GrpcOptions {
protoPath: string | string[];
package: string | string[];
protoLoader?: string;
packageDefinition?: PackageDefinition;
packageDefinition?: any;
loader?: {
keepCase?: boolean;
alternateCommentMode?: boolean;
Expand Down

0 comments on commit 3b74293

Please sign in to comment.