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.
11 lines • 369 B
TypeScript
/**
* Because since node 4.0.0 the internal util.is* functions got deprecated
* @param val Any value to test if null or undefined
*/
export declare function isNullOrUndefined(val: unknown): val is null | undefined;
/**
* Check whether a PID is alive
* @param pid PID
*/
export declare function isAlive(pid?: number): boolean;
//# sourceMappingURL=db_util.d.ts.map