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.

21 lines 540 B
export interface RedisBinaryDownloadUrlOpts { version: string; } /** * Download URL generator */ export default class RedisBinaryDownloadUrl { version: string; constructor({ version }: RedisBinaryDownloadUrlOpts); /** * Assemble the URL to download * Calls all the necessary functions to determine the URL */ getDownloadUrl(): Promise<string>; /** * Get the archive * Version independent */ getArchiveName(): Promise<string>; } //# sourceMappingURL=RedisBinaryDownloadUrl.d.ts.map