diff options
Diffstat (limited to 'cli/js/deno_unstable.ts')
-rw-r--r-- | cli/js/deno_unstable.ts | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/cli/js/deno_unstable.ts b/cli/js/deno_unstable.ts deleted file mode 100644 index 6e334e223..000000000 --- a/cli/js/deno_unstable.ts +++ /dev/null @@ -1,30 +0,0 @@ -// 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 { fstatSync, fstat } from "./ops/fs/stat.ts"; -export { fdatasyncSync, fdatasync, fsyncSync, fsync } from "./ops/fs/sync.ts"; -export { symlinkSync, symlink } from "./ops/fs/symlink.ts"; -export { loadavg, osRelease, hostname } from "./ops/os.ts"; -export { openPlugin } from "./ops/plugins.ts"; -export { transpileOnly, compile, bundle } from "./compiler_api.ts"; -export { applySourceMap, formatDiagnostics } from "./ops/errors.ts"; -export { signal, signals, Signal, SignalStream } from "./signals.ts"; -export { setRaw, consoleSize } from "./ops/tty.ts"; -export { utimeSync, utime } from "./ops/fs/utime.ts"; -export { ftruncateSync, ftruncate } from "./ops/fs/truncate.ts"; -export { shutdown, ShutdownMode } from "./net.ts"; -export { listen, listenDatagram, connect } from "./net_unstable.ts"; -export { startTls } from "./tls.ts"; -export { kill } from "./ops/process.ts"; -export { permissions, Permissions } from "./permissions.ts"; -export { PermissionStatus } from "./permissions.ts"; -export type { PermissionName, PermissionState } from "./permissions.ts"; -export { DiagnosticCategory } from "./diagnostics.ts"; -export type { - Diagnostic, - DiagnosticItem, - DiagnosticMessageChain, -} from "./diagnostics.ts"; |