2018-07-23 14:46:30 -04:00
|
|
|
// Copyright 2018 the Deno authors. All rights reserved. MIT license.
|
2018-07-06 11:20:35 -04:00
|
|
|
// Public deno module.
|
2018-09-01 10:45:26 -04:00
|
|
|
/// <amd-module name="deno"/>
|
2018-08-29 09:22:25 -04:00
|
|
|
export {
|
2018-08-31 07:51:12 -04:00
|
|
|
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";
|
2018-08-25 15:42:49 -04:00
|
|
|
export { libdeno } from "./libdeno";
|
2018-08-23 19:46:21 -04:00
|
|
|
export const argv: string[] = [];
|