UNPKG
@iammhc/nestjs-neo4j
Version:
latest (1.0.1)
1.0.1
1.0.0
Neo4j driver for Nest Framework.
github.com/IamMHC/NestJS-with-Neo4J
IamMHC/NestJS-with-Neo4J
@iammhc/nestjs-neo4j
/
dist
/
lib
/
interfaces
/
neo4j-config.interface.d.ts
10 lines
(9 loc)
•
278 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
export
declare
type
Neo4
jScheme =
'neo4j'
|
'neo4j+s'
|
'neo4j+ssc'
|
'bolt'
|
'bolt+s'
|
'bolt+ssc'
;
export
interface
Neo4
jModuleConfig {
scheme
:
Neo4
jScheme;
host
:
string
;
port
:
number
|
string
;
username
:
string
;
password
:
string
;
database
?:
string
; }