| 64 | * persistence layer. |
| 65 | */ |
| 66 | export class InMemoryLockStore implements LockStore { |
| 67 | private readonly chains = new Map<string, Promise<unknown>>() |
| 68 | |
| 69 | withLock<T>(key: string, fn: () => Promise<T>): Promise<T> { |
nothing calls this directly
no outgoing calls
no test coverage detected