3076ea72创建于 2025年12月1日历史提交
/**
 * Minimal transport interface used by generated service clients.
 * Implementations perform unary RPC: send request bytes and return response bytes.
 */
export interface RpcTransport {
  unary(path: string, req: Uint8Array, md?: Record<string, string>): Promise<Uint8Array>
}