UNPKG
ldap-vc-status
Version:
latest (5.0.0)
5.0.0
3.0.1
JavaScript implementation of
github.com/Spherity/vc-status-2021-ldap
Spherity/vc-status-2021-ldap
ldap-vc-status
/
lib
/
LdapSettings.js
12 lines
(11 loc)
•
290 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
class
LdapSettings
{
constructor
(
ssl, host, query, params
) {
this
.
ssl
= ssl;
this
.
host
= host;
this
.
query
= query;
this
.
params
= params; } }
exports
.
default
=
LdapSettings
;