diff --git a/README.markdown b/README.markdown index 352b6083d..0a80ed691 100644 --- a/README.markdown +++ b/README.markdown @@ -662,6 +662,11 @@ interface Rpc { If you're working with gRPC, a simple implementation could look like this: ```ts +const conn = new grpc.Client( + "localhost:8765", + grpc.credentials.createInsecure() +); + type RpcImpl = (service: string, method: string, data: Uint8Array) => Promise; const sendRequest: RpcImpl = (service, method, data) => {