mirror of
https://github.com/grpc/grpc-node.git
synced 2025-12-08 18:23:54 +00:00
15 lines
265 B
TypeScript
15 lines
265 B
TypeScript
// Original file: test/fixtures/test_service.proto
|
|
|
|
|
|
export interface Request {
|
|
'error'?: (boolean);
|
|
'message'?: (string);
|
|
'errorAfter'?: (number);
|
|
}
|
|
|
|
export interface Request__Output {
|
|
'error': (boolean);
|
|
'message': (string);
|
|
'errorAfter': (number);
|
|
}
|