Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
kitsonk committed Jul 3, 2020
1 parent 1f05aa7 commit 0de8263
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 11 deletions.
6 changes: 3 additions & 3 deletions cli/js/deno.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ export { watchFs } from "./ops/fs_events.ts";
export type { FsEvent } from "./ops/fs_events.ts";
export { internalSymbol as internal } from "./internals.ts";
export { copy, iter, iterSync } from "./io.ts";
export { SeekMode } from "./io.ts";
export type {
SeekMode,
Reader,
ReaderSync,
Writer,
Expand All @@ -56,8 +56,8 @@ export type { MkdirOptions } from "./ops/fs/mkdir.ts";
export { connect, listen } from "./net.ts";
export type { Listener, Conn } from "./net.ts";
export { env, exit, execPath } from "./ops/os.ts";
export { run } from "./process.ts";
export type { RunOptions, Process, ProcessStatus } from "./process.ts";
export { Process, run } from "./process.ts";
export type { RunOptions, ProcessStatus } from "./process.ts";
export { readDirSync, readDir } from "./ops/fs/read_dir.ts";
export type { DirEntry } from "./ops/fs/read_dir.ts";
export { readFileSync, readFile } from "./read_file.ts";
Expand Down
12 changes: 4 additions & 8 deletions cli/js/deno_unstable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,16 @@ export { signal, signals, Signal, SignalStream } from "./signals.ts";
export { setRaw } from "./ops/tty.ts";
export { utimeSync, utime } from "./ops/fs/utime.ts";
export { ftruncateSync, ftruncate } from "./ops/fs/truncate.ts";
export { shutdown } from "./net.ts";
export type { ShutdownMode } from "./net.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 type {
PermissionName,
PermissionState,
PermissionStatus,
} from "./permissions.ts";
export { PermissionStatus } from "./permissions.ts";
export type { PermissionName, PermissionState } from "./permissions.ts";
export { DiagnosticCategory } from "./diagnostics.ts";
export type {
Diagnostic,
DiagnosticCategory,
DiagnosticItem,
DiagnosticMessageChain,
} from "./diagnostics.ts";

0 comments on commit 0de8263

Please sign in to comment.