| 3 | import { getConfigFromEnv } from './utils/get-config-from-env.js'; |
| 4 | |
| 5 | interface SynchronizationManager { |
| 6 | set(key: string, value: string | number): Promise<void>; |
| 7 | get(key: string): Promise<string | null>; |
| 8 | delete(key: string): Promise<void>; |
| 9 | exists(key: string): Promise<boolean>; |
| 10 | setGreaterThan(key: string, value: number): Promise<boolean>; |
| 11 | } |
| 12 | |
| 13 | let synchronizationManager: SynchronizationManager; |
| 14 |
no outgoing calls
no test coverage detected