1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-23 15:16:54 -05:00
denoland-deno/js/deno.ts

18 lines
348 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,
2018-08-26 02:26:30 -04:00
mkdirSync,
2018-08-29 09:22:25 -04:00
readFileSync,
2018-09-03 20:22:30 -04:00
renameSync,
2018-08-29 09:22:25 -04:00
statSync,
2018-09-04 15:28:18 -04:00
lstatSync,
2018-08-29 09:22:25 -04:00
writeFileSync
} from "./os";
export { libdeno } from "./libdeno";
2018-08-23 19:46:21 -04:00
export const argv: string[] = [];