diff options
author | Asher Gomez <ashersaupingomez@gmail.com> | 2024-01-15 08:25:23 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-14 22:25:23 +0100 |
commit | 658b5596577a9349e1c8e66885491c9c36a6bc73 (patch) | |
tree | 55a1de01765587323a21f97ed441ebedb4cfaa2b | |
parent | a25055356cc850dcfe9f50d550dc7582c2312b6f (diff) |
chore: define removal version for `Deno.run()` (#21863)
This change sets the removal for `Deno.run()` in v2.
-rw-r--r-- | cli/tsc/dts/lib.deno.ns.d.ts | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/cli/tsc/dts/lib.deno.ns.d.ts b/cli/tsc/dts/lib.deno.ns.d.ts index 3cc6d6a4f..b0b4624b2 100644 --- a/cli/tsc/dts/lib.deno.ns.d.ts +++ b/cli/tsc/dts/lib.deno.ns.d.ts @@ -3933,10 +3933,11 @@ declare namespace Deno { ): FsWatcher; /** - * @deprecated Use {@linkcode Deno.Command} instead. - * * Options which can be used with {@linkcode Deno.run}. * + * @deprecated Use {@linkcode Deno.Command} instead. {@linkcode Deno.run} + * will be removed in v2.0.0. + * * @category Sub Process */ export interface RunOptions { /** Arguments to pass. @@ -3994,14 +3995,15 @@ declare namespace Deno { } /** - * @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 * `false`, the sub-process exit code will be set in `code`. * + * @deprecated Use {@linkcode Deno.Command} instead. {@linkcode Deno.run} + * will be removed in v2.0.0. + * * @category Sub Process */ export type ProcessStatus = | { @@ -4016,11 +4018,12 @@ 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. * + * @deprecated Use {@linkcode Deno.Command} instead. {@linkcode Deno.run} + * will be removed in v2.0.0. + * * @category Sub Process */ export class Process<T extends RunOptions = RunOptions> { /** The resource ID of the sub-process. */ @@ -4175,8 +4178,6 @@ declare namespace Deno { ): void; /** - * @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. * @@ -4222,6 +4223,9 @@ declare namespace Deno { * * Requires `allow-run` permission. * + * @deprecated Use {@linkcode Deno.Command} instead. {@linkcode Deno.run} + * will be removed in v2.0.0. + * * @tags allow-run * @category Sub Process */ |