summaryrefslogtreecommitdiff
path: root/cli/tsc/dts/lib.deno.ns.d.ts
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2024-08-02 10:19:47 -0400
committerGitHub <noreply@github.com>2024-08-02 14:19:47 +0000
commite24aa6bbeca265454fea3592fc9fc18e6312556e (patch)
treee59d6765168cb439996afb103c6bdcb0c6707d2a /cli/tsc/dts/lib.deno.ns.d.ts
parent0da81205d57e947e82aa02206f8ba6822c624ebc (diff)
docs: category should be 'Subprocess', not 'Sub Process' (#24852)
Diffstat (limited to 'cli/tsc/dts/lib.deno.ns.d.ts')
-rw-r--r--cli/tsc/dts/lib.deno.ns.d.ts20
1 files changed, 10 insertions, 10 deletions
diff --git a/cli/tsc/dts/lib.deno.ns.d.ts b/cli/tsc/dts/lib.deno.ns.d.ts
index d08ac1a94..cbf86eec6 100644
--- a/cli/tsc/dts/lib.deno.ns.d.ts
+++ b/cli/tsc/dts/lib.deno.ns.d.ts
@@ -4236,7 +4236,7 @@ declare namespace Deno {
* {@link https://docs.deno.com/runtime/manual/advanced/migrate_deprecations | Deno 1.x to 2.x Migration Guide}
* for migration instructions.
*
- * @category Sub Process */
+ * @category Subprocess */
export interface RunOptions {
/** Arguments to pass.
*
@@ -4303,7 +4303,7 @@ declare namespace Deno {
* {@link https://docs.deno.com/runtime/manual/advanced/migrate_deprecations | Deno 1.x to 2.x Migration Guide}
* for migration instructions.
*
- * @category Sub Process */
+ * @category Subprocess */
export type ProcessStatus =
| {
success: true;
@@ -4324,7 +4324,7 @@ declare namespace Deno {
* {@link https://docs.deno.com/runtime/manual/advanced/migrate_deprecations | Deno 1.x to 2.x Migration Guide}
* for migration instructions.
*
- * @category Sub Process */
+ * @category Subprocess */
export class Process<T extends RunOptions = RunOptions> {
/** The resource ID of the sub-process. */
readonly rid: number;
@@ -4530,7 +4530,7 @@ declare namespace Deno {
* for migration instructions.
*
* @tags allow-run
- * @category Sub Process
+ * @category Subprocess
*/
export function run<T extends RunOptions = RunOptions>(opt: T): Process<T>;
@@ -4599,7 +4599,7 @@ declare namespace Deno {
* ```
*
* @tags allow-run
- * @category Sub Process
+ * @category Subprocess
*/
export class Command {
constructor(command: string | URL, options?: CommandOptions);
@@ -4633,7 +4633,7 @@ declare namespace Deno {
* The interface for handling a child process returned from
* {@linkcode Deno.Command.spawn}.
*
- * @category Sub Process
+ * @category Subprocess
*/
export class ChildProcess implements AsyncDisposable {
get stdin(): WritableStream<Uint8Array>;
@@ -4667,7 +4667,7 @@ declare namespace Deno {
/**
* Options which can be set when calling {@linkcode Deno.Command}.
*
- * @category Sub Process
+ * @category Subprocess
*/
export interface CommandOptions {
/** Arguments to pass to the process. */
@@ -4729,7 +4729,7 @@ declare namespace Deno {
}
/**
- * @category Sub Process
+ * @category Subprocess
*/
export interface CommandStatus {
/** If the child process exits with a 0 status code, `success` will be set
@@ -4746,7 +4746,7 @@ declare namespace Deno {
* {@linkcode Deno.Command.outputSync} which represents the result of spawning the
* child process.
*
- * @category Sub Process
+ * @category Subprocess
*/
export interface CommandOutput extends CommandStatus {
/** The buffered output from the child process' `stdout`. */
@@ -5822,7 +5822,7 @@ declare namespace Deno {
* Requires `allow-run` permission.
*
* @tags allow-run
- * @category Sub Process
+ * @category Subprocess
*/
export function kill(pid: number, signo?: Signal): void;