1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-03 17:08:35 -05:00
denoland-deno/cli/js/ops/tty.ts
2020-07-06 21:45:39 -04:00

11 lines
317 B
TypeScript

// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { sendSync } from "./dispatch_json.ts";
export function isatty(rid: number): boolean {
return sendSync("op_isatty", { rid });
}
export function setRaw(rid: number, mode: boolean): void {
sendSync("op_set_raw", { rid, mode });
}