import type { Template } from '../template/template'; export interface Cache { write(key: string, value: T): void | Promise; read(key: string): T | undefined | Promise; remove(key: string): void | Promise; } export type LiquidCache = Cache>;