From 579f57c68ad1bb61ab14051238557313d73b433d Mon Sep 17 00:00:00 2001 From: murgatroid99 Date: Tue, 8 Jan 2019 11:02:56 -0800 Subject: [PATCH] Native: add details property to StatusError type --- packages/grpc-native-core/index.d.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/grpc-native-core/index.d.ts b/packages/grpc-native-core/index.d.ts index a72a2dbb..497b5bb0 100644 --- a/packages/grpc-native-core/index.d.ts +++ b/packages/grpc-native-core/index.d.ts @@ -567,6 +567,10 @@ declare module "grpc" { * Trailing metadata sent with the status, if applicable */ metadata?: Metadata; + /** + * Original status details string + */ + details?: string; } /**