1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-09 00:22:08 +03:00

better types

This commit is contained in:
leibale
2021-09-18 05:58:08 -04:00
parent 0ab2245049
commit 54124793ad
3 changed files with 5 additions and 6 deletions

View File

@@ -1,7 +1,5 @@
import { strict as assert } from 'assert';
import RedisClient, { RedisClientType } from './client';
import { RedisModules } from './commands';
import { RedisLuaScripts } from './lua-script';
import { execSync, spawn } from 'child_process';
import { once } from 'events';
import { RedisSocketOptions } from './socket';
@@ -370,4 +368,4 @@ export async function waitTillBeenCalled(spy: SinonSpy): Promise<void> {
await promiseTimeout(1);
} while (spy.callCount === calls)
}
}