mirror of
https://github.com/grpc/grpc-node.git
synced 2026-01-25 14:27:06 +00:00
21 lines
401 B
TypeScript
21 lines
401 B
TypeScript
// Original file: proto/grpc/testing/echo_messages.proto
|
|
|
|
|
|
/**
|
|
* Error status client expects to see.
|
|
*/
|
|
export interface ErrorStatus {
|
|
'code'?: (number);
|
|
'error_message'?: (string);
|
|
'binary_error_details'?: (string);
|
|
}
|
|
|
|
/**
|
|
* Error status client expects to see.
|
|
*/
|
|
export interface ErrorStatus__Output {
|
|
'code': (number);
|
|
'error_message': (string);
|
|
'binary_error_details': (string);
|
|
}
|