diff options
Diffstat (limited to 'cli/tsc/dts/lib.deno.ns.d.ts')
-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 */ |