neogm
Version:
TypeScript-first Neo4j Object Graph Mapper (OGM) for building type-safe graph database applications
13 lines • 391 B
TypeScript
import { Driver, Session } from 'neo4j-driver';
import { NeoGMConfig } from './types';
export declare class ConnectionManager {
private driver;
private config;
constructor(config: NeoGMConfig);
connect(): Promise<void>;
disconnect(): Promise<void>;
getSession(): Session;
getDriver(): Driver;
isConnected(): boolean;
}
//# sourceMappingURL=connection.d.ts.map