mirror of
https://github.com/denoland/deno.git
synced 2024-12-03 17:08:35 -05:00
11 lines
317 B
TypeScript
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 });
|
|
}
|