(p: string, isLstat: boolean | null, cb: BFSCallback<Stats>)
| 467 | throw new ApiError(ErrorCode.ENOTSUP); |
| 468 | } |
| 469 | public stat(p: string, isLstat: boolean | null, cb: BFSCallback<Stats>): void { |
| 470 | cb(new ApiError(ErrorCode.ENOTSUP)); |
| 471 | } |
| 472 | public statSync(p: string, isLstat: boolean | null): Stats { |
| 473 | throw new ApiError(ErrorCode.ENOTSUP); |
| 474 | } |
no test coverage detected