* * * INTERFACES * * *
| 72 | ************************************************/ |
| 73 | |
| 74 | interface ErrnoException extends Error { |
| 75 | errno?: any; |
| 76 | code?: string; |
| 77 | path?: string; |
| 78 | syscall?: string; |
| 79 | } |
| 80 | |
| 81 | interface NodeEventEmitter { |
| 82 | addListener(event: string, listener: Function): NodeEventEmitter; |
nothing calls this directly
no outgoing calls
no test coverage detected