diff options
Diffstat (limited to 'ext/node/polyfills/fs.ts')
-rw-r--r-- | ext/node/polyfills/fs.ts | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/ext/node/polyfills/fs.ts b/ext/node/polyfills/fs.ts index 38a7a2bfb..bf43dd92e 100644 --- a/ext/node/polyfills/fs.ts +++ b/ext/node/polyfills/fs.ts @@ -69,7 +69,12 @@ import { } from "ext:deno_node/_fs/_fs_rename.ts"; import { rmdir, rmdirPromise, rmdirSync } from "ext:deno_node/_fs/_fs_rmdir.ts"; import { rm, rmPromise, rmSync } from "ext:deno_node/_fs/_fs_rm.ts"; -import { stat, statPromise, statSync } from "ext:deno_node/_fs/_fs_stat.ts"; +import { + stat, + statPromise, + Stats, + statSync, +} from "ext:deno_node/_fs/_fs_stat.ts"; import { symlink, symlinkPromise, @@ -105,7 +110,6 @@ import { writeFilePromise, writeFileSync, } from "ext:deno_node/_fs/_fs_writeFile.ts"; -import { Stats } from "ext:deno_node/internal/fs/utils.mjs"; // @deno-types="./internal/fs/streams.d.ts" import { createReadStream, |