From a11bdbb0a2e3f7e57278ca18a2b003af0d98ce9f Mon Sep 17 00:00:00 2001 From: Eva Ogbe Date: Fri, 3 May 2019 15:03:02 -0700 Subject: [PATCH] Native: Remove unused ChannelCredential type definitions Removes: - getCallCredentials - getSecureContext These functions no longer exist, so their presence in the type definitions is invalid. --- packages/grpc-native-core/index.d.ts | 22 +++++----------------- 1 file changed, 5 insertions(+), 17 deletions(-) diff --git a/packages/grpc-native-core/index.d.ts b/packages/grpc-native-core/index.d.ts index 1a634164..1f8437f2 100644 --- a/packages/grpc-native-core/index.d.ts +++ b/packages/grpc-native-core/index.d.ts @@ -963,18 +963,6 @@ declare module "grpc" { * instance. */ compose(callCredentials: CallCredentials): ChannelCredentials; - - /** - * Gets the set of per-call credentials associated with this instance. - */ - getCallCredentials(): CallCredentials; - - /** - * Gets a SecureContext object generated from input parameters if this - * instance was created with createSsl, or null if this instance was created - * with createInsecure. - */ - getSecureContext(): SecureContext | null; } /** @@ -1545,7 +1533,7 @@ declare module "grpc" { TRANSIENT_FAILURE = 3, SHUTDOWN = 4 } - + export class Channel { /** * This constructor API is almost identical to the Client constructor, @@ -1583,8 +1571,8 @@ declare module "grpc" { watchConnectivityState(currentState: connectivityState, deadline: Date|number, callback: (error?: Error) => void): void; /** * Create a call object. Call is an opaque type that is used by the Client - * and Server classes. This function is called by the gRPC library when - * starting a request. Implementers should return an instance of Call that + * and Server classes. This function is called by the gRPC library when + * starting a request. Implementers should return an instance of Call that * is returned from calling createCall on an instance of the provided * Channel class. * @param method The full method string to request. @@ -1595,5 +1583,5 @@ declare module "grpc" { * that indicates what information to propagate from parentCall. */ createCall(method: string, deadline: Date|number, host: string|null, parentCall: Call|null, propagateFlags: number|null): Call; - } -} \ No newline at end of file + } +}