import { ProtobufMessage, ProtobufMessageClass } from "./message"; export interface ServiceDefinition { serviceName: string; } export interface MethodDefinition { methodName: string; service: ServiceDefinition; requestStream: boolean; responseStream: boolean; requestType: ProtobufMessageClass; responseType: ProtobufMessageClass; } export interface UnaryMethodDefinition extends MethodDefinition { requestStream: false; responseStream: false; }