* Acode file object
| 96 | * Acode file object |
| 97 | */ |
| 98 | interface AcodeFile { |
| 99 | uri?: string; |
| 100 | name?: string; |
| 101 | session?: unknown; |
| 102 | cacheFile?: string; |
| 103 | [key: string]: unknown; |
| 104 | } |
| 105 | |
| 106 | // Extend globalThis with Executor |
| 107 | declare global { |
nothing calls this directly
no outgoing calls
no test coverage detected