| 1 | // Global types for sandbox file management |
| 2 | |
| 3 | export interface SandboxFile { |
| 4 | content: string; |
| 5 | lastModified: number; |
| 6 | } |
| 7 | |
| 8 | export interface SandboxFileCache { |
| 9 | files: Record<string, SandboxFile>; |
nothing calls this directly
no outgoing calls
no test coverage detected