Skip to content

Commit

Permalink
avoid using node js type directly
Browse files Browse the repository at this point in the history
  • Loading branch information
OskarDamkjaer committed Oct 16, 2023
1 parent e2ee158 commit 7bef0ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/neo4j-schema-poller/src/neo4j-schema-poller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { listDatabases } from './queries/databases.js';
export class Neo4jSchemaPoller {
public connection?: Neo4jConnection;
public metadata?: MetadataPoller;
private reconnectionTimeout?: NodeJS.Timer;
private reconnectionTimeout?: ReturnType<typeof setTimeout>;

async connect(
url: string,
Expand Down

0 comments on commit 7bef0ba

Please sign in to comment.