2020-04-30 11:23:40 -04:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
|
|
|
|
|
|
|
// This module exports unstable Deno APIs.
|
|
|
|
|
|
|
|
export { umask } from "./ops/fs/umask.ts";
|
|
|
|
export { linkSync, link } from "./ops/fs/link.ts";
|
|
|
|
export { symlinkSync, symlink } from "./ops/fs/symlink.ts";
|
2020-05-09 12:44:35 -04:00
|
|
|
export { dir, loadavg, osRelease, hostname } from "./ops/os.ts";
|
2020-04-30 11:23:40 -04:00
|
|
|
export { openPlugin } from "./ops/plugins.ts";
|
2020-05-05 18:19:18 -04:00
|
|
|
export { transpileOnly, compile, bundle } from "./compiler_api.ts";
|
2020-04-30 11:23:40 -04:00
|
|
|
export { applySourceMap, formatDiagnostics } from "./ops/errors.ts";
|
|
|
|
export { signal, signals, Signal, SignalStream } from "./signals.ts";
|
|
|
|
export { setRaw } from "./ops/tty.ts";
|
|
|
|
export { utimeSync, utime } from "./ops/fs/utime.ts";
|
|
|
|
export { ShutdownMode, shutdown } from "./net.ts";
|
|
|
|
export { listen, listenDatagram, connect } from "./net_unstable.ts";
|
|
|
|
export { startTls } from "./tls.ts";
|
|
|
|
export { kill } from "./ops/process.ts";
|
|
|
|
export {
|
|
|
|
permissions,
|
|
|
|
PermissionName,
|
|
|
|
PermissionState,
|
|
|
|
PermissionStatus,
|
|
|
|
Permissions,
|
|
|
|
} from "./permissions.ts";
|
2020-05-23 09:37:12 -04:00
|
|
|
export {
|
|
|
|
Diagnostic,
|
|
|
|
DiagnosticCategory,
|
|
|
|
DiagnosticItem,
|
|
|
|
DiagnosticMessageChain,
|
|
|
|
} from "./diagnostics.ts";
|