UNPKG

sgnm-neo4j

Version:
10 lines (9 loc) 264 B
export type Neo4jScheme = 'neo4j' | 'neo4j+s' | 'neo4j+scc' | 'bolt' | 'bolt+s' | 'bolt+scc'; export interface Neo4jConfig { scheme: Neo4jScheme; host: string; port: number | string; username: string; password: string; database?: string; }