We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
MsPattern
any
1 parent 5763e2f commit 52caa02Copy full SHA for 52caa02
1 file changed
packages/microservices/client/client-proxy.ts
@@ -18,6 +18,8 @@ import {
18
WritePacket,
19
} from '../interfaces';
20
21
+import * as Interfaces from '../interfaces';
22
+
23
import * as Utils from '../utils';
24
25
export abstract class ClientProxy {
@@ -103,7 +105,7 @@ export abstract class ClientProxy {
103
105
return (obj && obj[prop]) || defaultValue;
104
106
}
107
- protected normalizePattern<T = any>(pattern: T): string {
108
+ protected normalizePattern(pattern: Interfaces.MsPattern): string {
109
return this.msvcUtil.transformPatternToRoute(pattern);
110
111
0 commit comments