You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
package com.services;service Bar {rpc Service (BarRequest) returns (BarResponse) {}}message BarRequest {string id = 1;}message BarResponse { string id = 1;}
foo.proto
package com.services;service Foo {rpc Service (FooRequest) returns (FooResponse) {}}message FooRequest {string id = 1;}message FooResponse { string id = 1;}
2 proto files:
bar.proto
foo.proto
Output:
bar.ts
foo.ts
has you see both of them exports the "COM_SERVICES_PACKAGE_NAME" which make it impossible import both of the files to the same index.ts
Originally posted by @eladhaim in #911 (comment)
The text was updated successfully, but these errors were encountered: