UNPKG

graphql-yoga

Version:

<div align="center"><img src="./website/public/cover.png" width="720" /></div>

8 lines (7 loc) 283 B
import { LRUCache as LRU } from 'lru-cache'; export type LRUCache<T extends {}> = LRU<string, T>; export interface LRUCacheOptions { max?: number; ttl?: number; } export declare function createLRUCache<T extends {}>({ max, ttl, }?: LRUCacheOptions): LRU<string, T, unknown>;