Remove unused param

This commit is contained in:
Manav Rathi
2024-04-12 19:53:23 +05:30
parent ce869be158
commit 36f9ca2004
2 changed files with 1 additions and 5 deletions

View File

@@ -9,10 +9,7 @@ const cacheNames = [
export type CacheName = (typeof cacheNames)[number];
export interface LimitedCache {
match: (
key: string,
options?: { sizeInBytes?: number },
) => Promise<Response>;
match: (key: string) => Promise<Response>;
put: (key: string, data: Response) => Promise<void>;
delete: (key: string) => Promise<boolean>;
}