| 8 | const host = '127.0.0.1' |
| 9 | |
| 10 | export interface AstroDevServer { |
| 11 | baseUrl: string |
| 12 | output: { |
| 13 | text: string |
| 14 | } |
| 15 | process: ChildProcessWithoutNullStreams | null |
| 16 | } |
| 17 | |
| 18 | function canAccessPath ( filePath: string ) { |
| 19 | try { |
nothing calls this directly
no outgoing calls
no test coverage detected