UNPKG

@bishwenduk029/fringe

Version:
9 lines (8 loc) 280 B
import { Cache } from '../index'; import { WrappedNodeRedisClient } from 'handy-redis'; export declare class RedisCache implements Cache { cache: WrappedNodeRedisClient; constructor(); get(key: string): Promise<any>; put(key: string, value: any): Promise<void>; }