1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-06 02:15:48 +03:00

fix imports

This commit is contained in:
leibale
2021-12-30 13:16:49 -05:00
parent 627eb78315
commit 5c0aad0780
2 changed files with 2 additions and 2 deletions

View File

@@ -10,7 +10,7 @@ import * as INSERTNX from './INSERTNX';
import * as LOADCHUNK from './LOADCHUNK'; import * as LOADCHUNK from './LOADCHUNK';
import * as RESERVE from './RESERVE'; import * as RESERVE from './RESERVE';
import * as SCANDUMP from './SCANDUMP'; import * as SCANDUMP from './SCANDUMP';
import { pushVerdictArguments } from '@node-redis/client/lib/commands/generic-transformers'; import { pushVerdictArguments } from '@node-redis/client/dist/lib/commands/generic-transformers';
import { RedisCommandArguments } from '@node-redis/client/dist/lib/commands'; import { RedisCommandArguments } from '@node-redis/client/dist/lib/commands';
export default { export default {

View File

@@ -20,7 +20,7 @@ import * as MRANGE_WITHLABELS from './MRANGE_WITHLABELS';
import * as MREVRANGE from './MREVRANGE'; import * as MREVRANGE from './MREVRANGE';
import * as MREVRANGE_WITHLABELS from './MREVRANGE_WITHLABELS'; import * as MREVRANGE_WITHLABELS from './MREVRANGE_WITHLABELS';
import { RedisCommandArguments } from '@node-redis/client/dist/lib/commands'; import { RedisCommandArguments } from '@node-redis/client/dist/lib/commands';
import { pushVerdictArguments } from '@node-redis/client/lib/commands/generic-transformers'; import { pushVerdictArguments } from '@node-redis/client/dist/lib/commands/generic-transformers';
export default { export default {
ADD, ADD,