use-neo4j
Version:
<div style="text-align:center"> <h1>React Hooks For Neo4j</h1>
11 lines (10 loc) • 369 B
TypeScript
export declare type Neo4jScheme = 'neo4j' | 'neo4j+s' | 'neo4j+scc' | 'bolt' | 'bolt+s' | 'bolt+scc';
export interface Neo4jConfig {
scheme: Neo4jScheme;
host: string;
port: number | string;
username: string | undefined;
password: string | undefined;
database?: string | undefined;
}
export declare const LOCAL_STORAGE_KEY = "$$charts::config";