Skip to content

Commit

Permalink
Node: Fix imports for Script and ClusterScanCursor. (valkey-io#2320)
Browse files Browse the repository at this point in the history
Fix imports for `ClusterScanCursor`.

Signed-off-by: Yury-Fridlyand <[email protected]>
  • Loading branch information
Yury-Fridlyand authored Oct 1, 2024
1 parent 4b53749 commit 45c1f15
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions node/src/GlideClusterClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
* Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0
*/

import { ClusterScanCursor } from "glide-rs";
import { Script } from "index";
import { ClusterScanCursor, Script } from "glide-rs";
import * as net from "net";
import {
BaseClient,
Expand Down
2 changes: 1 addition & 1 deletion node/tests/ScanTest.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
*/

import { afterAll, afterEach, beforeAll, describe } from "@jest/globals";
import { ClusterScanCursor } from "glide-rs";
import { v4 as uuidv4 } from "uuid";
import {
ClusterScanCursor,
Decoder,
GlideClient,
GlideClusterClient,
Expand Down

0 comments on commit 45c1f15

Please sign in to comment.