1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-25 08:39:09 -05:00
denoland-deno/js/deno.ts

16 lines
321 B
TypeScript
Raw Normal View History

// Copyright 2018 the Deno authors. All rights reserved. MIT license.
// Public deno module.
/// <amd-module name="deno"/>
2018-08-29 09:22:25 -04:00
export {
env,
2018-08-29 09:22:25 -04:00
exit,
FileInfo,
makeTempDirSync,
readFileSync,
statSync,
lStatSync,
writeFileSync
} from "./os";
export { libdeno } from "./libdeno";
2018-08-23 19:46:21 -04:00
export const argv: string[] = [];