UNPKG

redis-memory-server

Version:

Redis Server for testing. The server will allow you to connect your favorite client library to the Redis Server and run parallel integration tests isolated from each other.

20 lines 633 B
export type DebugFn = (...args: any[]) => any; export type DebugPropT = boolean; export interface DownloadProgressT { current: number; length: number; totalMb: number; lastPrintedAt: number; } export type CallbackFn = (...args: any[]) => any; export { SpawnOptions } from 'child_process'; export interface RedisMemoryInstancePropBaseT { args?: string[]; port?: number | null; } export interface RedisMemoryInstancePropT extends RedisMemoryInstancePropBaseT { ip?: string; } export type ErrorVoidCallback = (err: any) => void; export type EmptyVoidCallback = () => void; //# sourceMappingURL=types.d.ts.map