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
If I define two services in the same proto file with similar method names but different parameters, the resulting definitions lead to conflicts. For example:
service Library {
rpc GetBook (GetBookRequest) returns (Book) {}
}
service BookStore {
rpc GetBook (GetBookOrder) returns (Book) {}
}
This creates two interfaces for GetBook (IGetBook) that have different implementations and lead to issues when using the typescript compiler. I wondered if there is a way to deal with this (within the same package scope)?
The text was updated successfully, but these errors were encountered:
If I define two services in the same proto file with similar method names but different parameters, the resulting definitions lead to conflicts. For example:
This creates two interfaces for GetBook (
IGetBook
) that have different implementations and lead to issues when using the typescript compiler. I wondered if there is a way to deal with this (within the same package scope)?The text was updated successfully, but these errors were encountered: