From 50aaf91ac45830cda12e2eb3f5b5158651578380 Mon Sep 17 00:00:00 2001 From: MaxAake <61233757+MaxAake@users.noreply.github.com> Date: Wed, 16 Oct 2024 13:03:21 +0200 Subject: [PATCH] make isUnboundRelationship private --- packages/core/src/graph-types.ts | 1 + packages/neo4j-driver-deno/lib/core/graph-types.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/packages/core/src/graph-types.ts b/packages/core/src/graph-types.ts index 1140c43eb..b1f025c21 100644 --- a/packages/core/src/graph-types.ts +++ b/packages/core/src/graph-types.ts @@ -349,6 +349,7 @@ Object.defineProperty( * Test if given object is an instance of {@link UnboundRelationship} class. * @param {Object} obj the object to test. * @return {boolean} `true` if given object is a {@link UnboundRelationship}, `false` otherwise. + * @access private */ function isUnboundRelationship< T extends NumberOrInteger = Integer, diff --git a/packages/neo4j-driver-deno/lib/core/graph-types.ts b/packages/neo4j-driver-deno/lib/core/graph-types.ts index 3557fd09c..9d754f9e2 100644 --- a/packages/neo4j-driver-deno/lib/core/graph-types.ts +++ b/packages/neo4j-driver-deno/lib/core/graph-types.ts @@ -349,6 +349,7 @@ Object.defineProperty( * Test if given object is an instance of {@link UnboundRelationship} class. * @param {Object} obj the object to test. * @return {boolean} `true` if given object is a {@link UnboundRelationship}, `false` otherwise. + * @access private */ function isUnboundRelationship< T extends NumberOrInteger = Integer,