summaryrefslogtreecommitdiff
path: root/ext/node/polyfills/_fs/_fs_dirent.ts
diff options
context:
space:
mode:
Diffstat (limited to 'ext/node/polyfills/_fs/_fs_dirent.ts')
-rw-r--r--ext/node/polyfills/_fs/_fs_dirent.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/node/polyfills/_fs/_fs_dirent.ts b/ext/node/polyfills/_fs/_fs_dirent.ts
index 0f80fc135..d4ad6bb43 100644
--- a/ext/node/polyfills/_fs/_fs_dirent.ts
+++ b/ext/node/polyfills/_fs/_fs_dirent.ts
@@ -2,7 +2,7 @@
import { notImplemented } from "ext:deno_node/_utils.ts";
export default class Dirent {
- constructor(private entry: Deno.DirEntry) {}
+ constructor(private entry: Deno.DirEntry & { parentPath: string }) {}
isBlockDevice(): boolean {
notImplemented("Deno does not yet support identification of block devices");