export interface LinkedNode { key: string; value: T; ttl: number; prev?: LinkedNode; next?: LinkedNode; }