UNPKG

heapstash

Version:

HeapStash is a library that allows for easy caching in Node.js, with many advanced features such as TTL, maximum items in memory cache, external cache support, and more.

8 lines (7 loc) 209 B
import Plugin from "./index"; import * as Redis from "ioredis"; interface RedisPluginSettings { client: Redis.Redis; } declare const _default: (settings: RedisPluginSettings) => Plugin; export = _default;