UNPKG

@appigram/keyv-lru

Version:

An in-memory LRU back-end for Keyv.

8 lines (6 loc) 156 B
// @flow export type ExpirableItem<T> = { // Timestamp in millis (like Date.now()) when this item is no longer usable. expires?: number, data: T, };