Cache
import { Cache } from "https://raw.githubusercontent.com/adamjosefus/allo_caching/main/mod.ts";class Cache<T> {}
has(key: string): boolean;
load<E extends LoadEntryType<T>>(...args: E): E extends LoadAndGenerateEntryType<T> ? T : T | undefined;
remove(key: string): void;