Fix documentation of part of the type signature for server credentials

This commit is contained in:
murgatroid99 2018-02-05 14:35:20 -08:00
parent d598ba0420
commit e87552d918
2 changed files with 4 additions and 4 deletions

View File

@ -573,12 +573,12 @@ declare module "grpc" {
/**
* The server's private key
*/
privateKey: Buffer;
private_key: Buffer;
/**
* The server's certificate chain
*/
certChain: Buffer;
cert_chain: Buffer;
}
/**

View File

@ -219,8 +219,8 @@ exports.ServerCredentials = grpc.ServerCredentials;
/**
* A private key and certificate pair
* @typedef {Object} grpc.ServerCredentials~keyCertPair
* @property {Buffer} privateKey The server's private key
* @property {Buffer} certChain The server's certificate chain
* @property {Buffer} private_key The server's private key
* @property {Buffer} cert_chain The server's certificate chain
*/
/**