diff options
Diffstat (limited to 'cli/tsc')
-rw-r--r-- | cli/tsc/dts/lib.deno.unstable.d.ts | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/cli/tsc/dts/lib.deno.unstable.d.ts b/cli/tsc/dts/lib.deno.unstable.d.ts index 7ca089108..12186c0b3 100644 --- a/cli/tsc/dts/lib.deno.unstable.d.ts +++ b/cli/tsc/dts/lib.deno.unstable.d.ts @@ -95,9 +95,9 @@ declare namespace Deno { type NativeVoidType = "void"; /** **UNSTABLE**: New API, yet to be vetted. - * + * * The native struct type for interfacing with foreign functions. - * + * */ type NativeStructType = { readonly struct: readonly NativeType[] }; @@ -1640,7 +1640,8 @@ declare namespace Deno { /** How `stdin` of the spawned process should be handled. * - * Defaults to `"null"`. */ + * Defaults to `"inherit"` for `output` & `outputSync`, + * and `"inherit"` for `spawn`. */ stdin?: "piped" | "inherit" | "null"; /** How `stdout` of the spawned process should be handled. * |