| 111 | } |
| 112 | |
| 113 | export interface StorageAdapter { |
| 114 | get: (key: string) => Promise<string | null> |
| 115 | set: (key: string, value: string) => Promise<void> |
| 116 | delete: (key: string) => Promise<void> |
| 117 | keys: () => Promise<Array<string>> |
| 118 | clear: () => Promise<void> |
| 119 | } |
| 120 | |
| 121 | export interface RetryPolicy { |
| 122 | calculateDelay: (retryCount: number) => number |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…