summaryrefslogtreecommitdiff
path: root/cli/tsc/dts/lib.deno.ns.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tsc/dts/lib.deno.ns.d.ts')
-rw-r--r--cli/tsc/dts/lib.deno.ns.d.ts17
1 files changed, 14 insertions, 3 deletions
diff --git a/cli/tsc/dts/lib.deno.ns.d.ts b/cli/tsc/dts/lib.deno.ns.d.ts
index 4d41aea43..74d3ffb0b 100644
--- a/cli/tsc/dts/lib.deno.ns.d.ts
+++ b/cli/tsc/dts/lib.deno.ns.d.ts
@@ -3691,7 +3691,10 @@ declare namespace Deno {
options?: { recursive: boolean },
): FsWatcher;
- /** Options which can be used with {@linkcode Deno.run}.
+ /**
+ * @deprecated Use {@linkcode Deno.Command} instead.
+ *
+ * Options which can be used with {@linkcode Deno.run}.
*
* @category Sub Process */
export interface RunOptions {
@@ -3749,7 +3752,10 @@ declare namespace Deno {
stdin?: "inherit" | "piped" | "null" | number;
}
- /** The status resolved from the `.status()` method of a
+ /**
+ * @deprecated Use {@linkcode Deno.Command} instead.
+ *
+ * The status resolved from the `.status()` method of a
* {@linkcode Deno.Process} instance.
*
* If `success` is `true`, then `code` will be `0`, but if `success` is
@@ -3769,6 +3775,8 @@ declare namespace Deno {
};
/**
+ * * @deprecated Use {@linkcode Deno.Command} instead.
+ *
* Represents an instance of a sub process that is returned from
* {@linkcode Deno.run} which can be used to manage the sub-process.
*
@@ -3925,7 +3933,10 @@ declare namespace Deno {
handler: () => void,
): void;
- /** Spawns new subprocess. RunOptions must contain at a minimum the `opt.cmd`,
+ /**
+ * @deprecated Use {@linkcode Deno.Command} instead.
+ *
+ * Spawns new subprocess. RunOptions must contain at a minimum the `opt.cmd`,
* an array of program arguments, the first of which is the binary.
*
* ```ts