UNPKG

rankmycache

Version:

An easy-to-use cache providing service.

11 lines (10 loc) 257 B
import { CacheProviders } from '../enums/cache-providers'; export interface CacheOptions { type: CacheProviders; host: string; port: number; password?: string; requestTimeout?: number; keyPrefix?: string; ttl?: number | false; }