| 6 | * Interface for nodes fs module |
| 7 | */ |
| 8 | export interface VMFS { |
| 9 | /** Implements fs.statSync */ |
| 10 | statSync: typeof fs.statSync; |
| 11 | /** Implements fs.readFileSync */ |
| 12 | readFileSync: typeof fs.readFileSync; |
| 13 | } |
| 14 | |
| 15 | /** |
| 16 | * Interface for nodes path module |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…