UNPKG

@corbinu/couchbase

Version:

The unofficial Couchbase Node.js Client Library.

20 lines (17 loc) 418 B
'use strict'; /** * CertificateAuthenticator provides an authenticator implementation * which uses TLS Certificate Authentication. */ class CertificateAuthenticator { /** * * @param {string} certificatePath * @param {string} keyPath */ constructor(certificatePath, keyPath) { this.certificatePath = certificatePath; this.keyPath = keyPath; } } module.exports = CertificateAuthenticator;