| 12 | import type { RunKind, RunRecord } from '../domain/types.js'; |
| 13 | |
| 14 | export interface RunStore { |
| 15 | save(record: RunRecord): Promise<RunRecord>; |
| 16 | get(runId: string): Promise<RunRecord | null>; |
| 17 | list(limit?: number): Promise<RunRecord[]>; |
| 18 | } |
| 19 | |
| 20 | let counter = 0; |
| 21 |
no outgoing calls
no test coverage detected