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