UNPKG

@iammhc/nestjs-neo4j

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