(attempt: CellAttempt)
| 113 | export interface AttemptStore { |
| 114 | list(cellId: string): Promise<readonly CellAttempt[]>; |
| 115 | append(attempt: CellAttempt): Promise<void>; |
| 116 | runExclusive<T>(operation: () => Promise<T>): Promise<T>; |
| 117 | } |
| 118 |
no outgoing calls