| 1 | export interface Adapter<T> { |
| 2 | read: () => Promise<T | null> |
| 3 | write: (data: T) => Promise<void> |
| 4 | } |
| 5 | |
| 6 | export interface SyncAdapter<T> { |
| 7 | read: () => T | null |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…