UNPKG

@omnigraph/neo4j

Version:

9 lines (8 loc) 308 B
import { Logger } from '@graphql-mesh/types'; import { Neo4JAuthOpts } from './auth.js'; export interface Neo4JDriverOpts { endpoint: string; auth?: Neo4JAuthOpts; logger?: Logger; } export declare function getDriverFromOpts(opts: Neo4JDriverOpts): import("neo4j-driver/types/driver.js").Driver;