mirror of
https://github.com/grpc/grpc-node.git
synced 2025-12-08 18:23:54 +00:00
Fix #502 - Make all properties of CallOptions optional
This commit is contained in:
parent
a5e12074e2
commit
9114f34ea3
4
packages/grpc-native-core/index.d.ts
vendored
4
packages/grpc-native-core/index.d.ts
vendored
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user