import { ICacheOption } from "./ICacheOption"; export interface ICacheItem extends ICacheOption { data: T; key?: string; }