diff --git a/packages/grpc-native-core/index.d.ts b/packages/grpc-native-core/index.d.ts index 25815ce64..3871eccea 100644 --- a/packages/grpc-native-core/index.d.ts +++ b/packages/grpc-native-core/index.d.ts @@ -26,7 +26,7 @@ declare module "grpc" { /* The Message interface is copied and slightly modified from @types/protobuf * version 5.0.31, which was distributed under the following license: - * + * * This project is licensed under the MIT license. * Copyrights are respective of each contributor listed at the beginning of each definition file. * @@ -452,13 +452,13 @@ declare module "grpc" { * User provided method to handle server streaming methods on the server. */ type handleServerStreamingCall = - (call: ServerWritableStream) => void; + (call: ServerWritableStream) => void; /** * A stream that the server can write to. Used for calls that are streaming * from the server side. */ - export class ServerWritableStream extends Writable { + export class ServerWritableStream extends Writable { /** * Indicates if the call has been cancelled */ @@ -491,7 +491,7 @@ declare module "grpc" { /* This typo existed in previous versions of this file, so we provide this * type alias for backwards compatibility. */ - export type ServerWriteableStream = ServerWritableStream; + export type ServerWriteableStream = ServerWritableStream; /** * User provided method to handle bidirectional streaming calls on the server.