(path: string)
| 77 | } |
| 78 | |
| 79 | public static EISDIR(path: string): ApiError { |
| 80 | return this.FileError(ErrorCode.EISDIR, path); |
| 81 | } |
| 82 | |
| 83 | public static ENOTDIR(path: string): ApiError { |
| 84 | return this.FileError(ErrorCode.ENOTDIR, path); |
no test coverage detected