summaryrefslogtreecommitdiff
path: root/js/deno.ts
diff options
context:
space:
mode:
authorAaron Power <theaaronepower@gmail.com>2018-08-29 14:22:25 +0100
committerRyan Dahl <ry@tinyclouds.org>2018-08-30 12:39:33 -0400
commitb86bf4d8a4d19f8ba50615028d711413307487e9 (patch)
tree8c0f40147723ba210f9c4507772e593e11e79fb5 /js/deno.ts
parentd8d5c421c33b1cc5416ff87f6a7c3837e5176d4d (diff)
Implemented statSync and lStatSync
Diffstat (limited to 'js/deno.ts')
-rw-r--r--js/deno.ts10
1 files changed, 9 insertions, 1 deletions
diff --git a/js/deno.ts b/js/deno.ts
index 7a5c4217e..e24345ccd 100644
--- a/js/deno.ts
+++ b/js/deno.ts
@@ -1,5 +1,13 @@
// Copyright 2018 the Deno authors. All rights reserved. MIT license.
// Public deno module.
-export { exit, makeTempDirSync, readFileSync, writeFileSync } from "./os";
+export {
+ exit,
+ FileInfo,
+ makeTempDirSync,
+ readFileSync,
+ statSync,
+ lStatSync,
+ writeFileSync
+} from "./os";
export { libdeno } from "./libdeno";
export const argv: string[] = [];