Merge pull request #700 from murgatroid99/native_error_type_fix

Native: add details property to StatusError type
This commit is contained in:
Michael Lumish 2019-01-08 14:02:55 -08:00 committed by GitHub
commit 4a9624a81c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -567,6 +567,10 @@ declare module "grpc" {
* Trailing metadata sent with the status, if applicable
*/
metadata?: Metadata;
/**
* Original status details string
*/
details?: string;
}
/**