import { CacheKey } from "../../../types/cache.identifier"; import { CacheStoreType } from "./CacheStore.type"; export interface LibraryInterface { use(store: CacheStoreType): void; cursor(key: CacheKey): T; }