Deno.Process.prototype.stdin - Deno documentation
property Deno.Process.prototype.stdin

A reference to the sub-processes stdin, which allows interacting with the sub-process at a low level.

Type

T["stdin"] extends "piped" ?
Writer
& Closer
& { writable: WritableStream<Uint8Array>; }
: (
Writer
& Closer
& { writable: WritableStream<Uint8Array>; }
) | null