mirror of
https://github.com/ente-io/ente.git
synced 2025-08-13 17:57:31 +00:00
Remove unused param
This commit is contained in:
@@ -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>;
|
||||
}
|
||||
|
Reference in New Issue
Block a user