diff options
Diffstat (limited to 'js/deno.ts')
-rw-r--r-- | js/deno.ts | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/js/deno.ts b/js/deno.ts index 8908d7b67..a1eb639bb 100644 --- a/js/deno.ts +++ b/js/deno.ts @@ -4,14 +4,12 @@ export { env, exit, - FileInfo, makeTempDirSync, renameSync, - statSync, - lstatSync } from "./os"; export { mkdirSync, mkdir } from "./mkdir"; export { readFileSync, readFile } from "./read_file"; +export { FileInfo, statSync, lstatSync, stat, lstat } from "./stat"; export { writeFileSync, writeFile } from "./write_file"; export { ErrorKind, DenoError } from "./errors"; export { libdeno } from "./libdeno"; |