## API Report File for "@fluidframework/driver-web-cache" > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/). ```ts import { ICacheEntry } from '@fluidframework/odsp-driver-definitions'; import { IFileEntry } from '@fluidframework/odsp-driver-definitions'; import { IPersistedCache } from '@fluidframework/odsp-driver-definitions'; import { ITelemetryBaseLogger } from '@fluidframework/common-definitions'; // @public (undocumented) export function deleteFluidCacheIndexDbInstance(): Promise; // @public export class FluidCache implements IPersistedCache { constructor(config: FluidCacheConfig); // (undocumented) get(cacheEntry: ICacheEntry): Promise; // (undocumented) put(entry: ICacheEntry, value: any): Promise; // (undocumented) removeEntries(file: IFileEntry): Promise; } // @public (undocumented) export interface FluidCacheConfig { logger?: ITelemetryBaseLogger; maxCacheItemAge: number; partitionKey: string | null; } // (No @packageDocumentation comment for this package) ```