| 7 | } |
| 8 | |
| 9 | interface ModelsCacheState { |
| 10 | entries: Map<string, { data: ModelsData; expiresAt: number }>; |
| 11 | inFlight: Map<string, Promise<ModelsData>>; |
| 12 | generation: number; |
| 13 | } |
| 14 | |
| 15 | declare global { |
| 16 | var __piModelsCacheState: ModelsCacheState | undefined; |
nothing calls this directly
no outgoing calls
no test coverage detected