interface  Transport  {       stream < I ,  O > ( service , 
method , 
signal , 
timeoutMs , 
header , 
input , 
contextValues ? ) :  Promise < StreamResponse < I ,  O > > ;       unary < I ,  O > ( service , 
method , 
signal , 
timeoutMs , 
header , 
input , 
contextValues ? ) :  Promise < UnaryResponse < I ,  O > > ;  } Defined in node_modules/.pnpm/@connectrpc+connect@1.3.0_@bufbuild+protobuf@1.6.0/node_modules/@connectrpc/connect/dist/cjs/transport.d.ts:9 Methods stream stream < I ,  O > ( service , method , signal , timeoutMs , header , input , contextValues ? ) :  Promise < StreamResponse < I ,  O > > Parameters signal : undefined  |  AbortSignal timeoutMs : undefined  |  number Defined in node_modules/.pnpm/@connectrpc+connect@1.3.0_@bufbuild+protobuf@1.6.0/node_modules/@connectrpc/connect/dist/cjs/transport.d.ts:19 unary unary < I ,  O > ( service , method , signal , timeoutMs , header , input , contextValues ? ) :  Promise < UnaryResponse < I ,  O > > Parameters signal : undefined  |  AbortSignal timeoutMs : undefined  |  number Defined in node_modules/.pnpm/@connectrpc+connect@1.3.0_@bufbuild+protobuf@1.6.0/node_modules/@connectrpc/connect/dist/cjs/transport.d.ts:14 
Transport represents the underlying transport for a client. A transport implements a protocol, such as Connect or gRPC-web, and allows for the concrete clients to be independent of the protocol.