diff --git a/src/types.ts b/src/types.ts index 8b65e6f42..7a13fab6b 100644 --- a/src/types.ts +++ b/src/types.ts @@ -154,7 +154,7 @@ export type RequestInterface = OctokitTypes.RequestInterface; export type Cache = | Lru | { - get: (key: string) => string | Promise; + get: (key: string) => string | Promise; set: (key: string, value: string) => any; };