Skip to content

Commit

Permalink
Merge pull request #171 from murgatroid99/key_cert_pair_type_fix
Browse files Browse the repository at this point in the history
Fix documentation of part of the type signature for server credentials
  • Loading branch information
murgatroid99 committed Feb 7, 2018
2 parents d598ba0 + e87552d commit 77e4376
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/grpc-native-core/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

/**
Expand Down
4 changes: 2 additions & 2 deletions packages/grpc-native-core/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/

/**
Expand Down

0 comments on commit 77e4376

Please sign in to comment.