summaryrefslogtreecommitdiff
path: root/js/deno.ts
blob: e24345ccde3fc20d80bc5fb8cb6459c7fdf98a98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright 2018 the Deno authors. All rights reserved. MIT license.
// Public deno module.
export {
  exit,
  FileInfo,
  makeTempDirSync,
  readFileSync,
  statSync,
  lStatSync,
  writeFileSync
} from "./os";
export { libdeno } from "./libdeno";
export const argv: string[] = [];