Add some missing descriptions to typescript.

This commit is contained in:
Ian Haken 2018-07-19 14:06:51 -07:00 committed by murgatroid99
parent 51c97b559d
commit 5f77bcda1f
1 changed files with 6 additions and 0 deletions

View File

@ -794,7 +794,13 @@ declare module "grpc" {
ERROR,
}
/**
* A certificate as received by the checkServerIdentity callback.
*/
export interface Certificate {
/**
* The raw certificate in DER form.
*/
raw: Buffer;
}