Promisified version of the ldapjs package with additional typings.
This library heavily relies on the ldapjs package. Please see http://ldapjs.org/ for the complete detailed usage.
Install with npm:
npm install --save @csquare/ldapjs-clientInstall with Yarn:
yarn add @csquare/ldapjs-clientimport { createClient } from '@csquare/ldapjs-client';
(async () => {
  const options = {};
  const client = createClient(options);
  await client.bind(/* args */);
})();