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