UNPKG

@graphql-mesh/utils

Version:
4 lines (3 loc) 162 B
import { LRU } from 'tiny-lru'; export type LRUCache<T = any> = LRU<T>; export declare function createLruCache<T = any>(max?: number, ttl?: number): LRUCache<T>;