diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-02-15 13:59:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-15 13:59:04 +0100 |
commit | 9b5e336c3d9b9c9d3b520ddb2ff80502b155ed3f (patch) | |
tree | a07abb2c69bcb0b2fd941a446675b82818725340 /runtime/js/90_deno_ns.js | |
parent | bdc8006a362b4f95107a25ca816dcdedb7f44e4a (diff) |
feat: Add Deno.FsFile, deprecate Deno.File (#13660)
Diffstat (limited to 'runtime/js/90_deno_ns.js')
-rw-r--r-- | runtime/js/90_deno_ns.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/js/90_deno_ns.js b/runtime/js/90_deno_ns.js index 871062394..d52f267c0 100644 --- a/runtime/js/90_deno_ns.js +++ b/runtime/js/90_deno_ns.js @@ -76,6 +76,7 @@ write: __bootstrap.io.write, writeSync: __bootstrap.io.writeSync, File: __bootstrap.files.File, + FsFile: __bootstrap.files.FsFile, open: __bootstrap.files.open, openSync: __bootstrap.files.openSync, create: __bootstrap.files.create, |