()
| 27 | const dumpState = new Map<string, DumpState>() |
| 28 | |
| 29 | export function getLastApiRequests(): Array<{ |
| 30 | timestamp: string |
| 31 | request: unknown |
| 32 | }> { |
| 33 | return [...cachedApiRequests] |
| 34 | } |
| 35 | |
| 36 | export function clearApiRequestCache(): void { |
| 37 | cachedApiRequests.length = 0 |
nothing calls this directly
no outgoing calls
no test coverage detected