Don't export types
This commit is contained in:
@@ -5,7 +5,7 @@ import grpc from 'grpc'
|
||||
import pbFile from './pbFile.js'
|
||||
|
||||
|
||||
export type TestMessage = {|
|
||||
type TestMessage = {|
|
||||
a?: string;
|
||||
b?: number;
|
||||
c?: number;
|
||||
@@ -18,38 +18,38 @@ export type TestMessage = {|
|
||||
r?: Array<number>;
|
||||
|};
|
||||
|
||||
export type TestNoStreamRequest = {|
|
||||
type TestNoStreamRequest = {|
|
||||
message?: TestMessage;
|
||||
|};
|
||||
|
||||
export type TestNoStreamReply = {|
|
||||
type TestNoStreamReply = {|
|
||||
message?: TestMessage;
|
||||
err_msg?: string;
|
||||
|};
|
||||
|
||||
export type TestStreamRequestRequest = {|
|
||||
type TestStreamRequestRequest = {|
|
||||
message?: TestMessage;
|
||||
|};
|
||||
|
||||
export type TestStreamRequestReply = {|
|
||||
type TestStreamRequestReply = {|
|
||||
message?: TestMessage;
|
||||
err_msg?: string;
|
||||
|};
|
||||
|
||||
export type TestStreamReplyRequest = {|
|
||||
type TestStreamReplyRequest = {|
|
||||
message?: TestMessage;
|
||||
|};
|
||||
|
||||
export type TestStreamReplyReply = {|
|
||||
type TestStreamReplyReply = {|
|
||||
message?: TestMessage;
|
||||
err_msg?: string;
|
||||
|};
|
||||
|
||||
export type TestStreamBothRequest = {|
|
||||
type TestStreamBothRequest = {|
|
||||
message?: TestMessage;
|
||||
|};
|
||||
|
||||
export type TestStreamBothReply = {|
|
||||
type TestStreamBothReply = {|
|
||||
message?: TestMessage;
|
||||
err_msg?: string;
|
||||
|};
|
||||
|
Reference in New Issue
Block a user