Merge pull request #171 from murgatroid99/key_cert_pair_type_fix

Fix documentation of part of the type signature for server credentials
This commit is contained in:
Michael Lumish 2018-02-07 08:53:20 -08:00 committed by GitHub
commit 77e43761a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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
*/
/**