File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ type MethodCodecs<Method> = {
35
35
36
36
type ServiceCodecs < Service > = { [ MethodName in keyof Service ] : MethodCodecs < Service [ MethodName ] > } ;
37
37
38
- type CodecsFactory < ClientFactory > = {
38
+ export type CodecsFactory < ClientFactory > = {
39
39
[ GetterName in keyof ClientFactory ] : ( ) => ServiceCodecs <
40
40
LooseReturnType < ClientFactory [ GetterName ] >
41
41
>
@@ -46,9 +46,11 @@ type RawServiceMethod<Method> = (
46
46
metadata ?: grpc . Metadata ,
47
47
) => Observable < SerializedMessage < ResponseType < Method > > > ;
48
48
49
- type RawService < Service > = { [ MethodName in keyof Service ] : RawServiceMethod < Service [ MethodName ] > } ;
49
+ export type RawService < Service > = {
50
+ [ MethodName in keyof Service ] : RawServiceMethod < Service [ MethodName ] >
51
+ } ;
50
52
51
- type RawClientFactory < ClientFactory > = {
53
+ export type RawClientFactory < ClientFactory > = {
52
54
[ GetterName in keyof ClientFactory ] : ( ) => RawService < LooseReturnType < ClientFactory [ GetterName ] > >
53
55
} ;
54
56
You can’t perform that action at this time.
0 commit comments