Add some missing descriptions to typescript.

This commit is contained in:
Ian Haken 2018-07-19 14:06:51 -07:00
parent 045d938bc8
commit c04d71521f
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;
}