From 9114f34ea3cd8315f3531a9b452a4c02761d4399 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?GP=20=E2=9C=85?= Date: Thu, 12 Sep 2019 09:37:00 +0530 Subject: [PATCH] Fix #502 - Make all properties of CallOptions optional --- packages/grpc-native-core/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/grpc-native-core/index.d.ts b/packages/grpc-native-core/index.d.ts index c7dab49d..924d0730 100644 --- a/packages/grpc-native-core/index.d.ts +++ b/packages/grpc-native-core/index.d.ts @@ -1198,11 +1198,11 @@ declare module "grpc" { * Indicates which properties of a parent call should propagate to this * call. Bitwise combination of flags in `grpc.propagate`. */ - propagate_flags: number; + propagate_flags?: number; /** * The credentials that should be used to make this particular call. */ - credentials: CallCredentials; + credentials?: CallCredentials; /** * Additional custom call options. These can be used to pass additional * data per-call to client interceptors