UNPKG
nestjs-etcd3
Version:
latest (1.1.0)
1.1.0
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
a nestjs etcd3 module
kyknow/nestjs-etcd3
nestjs-etcd3
/
dist
/
etcd.client.provider.d.ts
8 lines
(7 loc)
•
236 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
EtcdModuleOptions
}
from
'./etcd.interface'
;
import
{
Etcd3
}
from
'etcd3'
;
export
declare
const
createClient
:
() =>
{
provide
:
string
;
useFactory
:
(
options
:
EtcdModuleOptions
) =>
Etcd3
;
inject
:
string
[]; };