| 1 | export interface ICache { |
| 2 | set( |
| 3 | type: string, |
| 4 | args: string[], |
| 5 | value: any, |
| 6 | expirySeconds: number, |
| 7 | ): Promise<void>; |
| 8 | |
| 9 | get(type: string, args: string[]): Promise<any>; |
| 10 | |
| 11 | evict(type: string, args: string[]): Promise<null>; |
| 12 | } |
no outgoing calls
no test coverage detected