import { Node } from './node'; export interface Cache { set(key: string, node: Node): any; get(key: string): Node | null; }