mirror of
https://github.com/denoland/deno.git
synced 2025-03-03 17:34:47 -05:00
fix(dts): make Deno.Command accept readonly prop in options.args (#17718)
This commit is contained in:
parent
39f131cd76
commit
68008bee51
1 changed files with 1 additions and 1 deletions
2
cli/tsc/dts/lib.deno.unstable.d.ts
vendored
2
cli/tsc/dts/lib.deno.unstable.d.ts
vendored
|
@ -1539,7 +1539,7 @@ declare namespace Deno {
|
||||||
*/
|
*/
|
||||||
export interface CommandOptions {
|
export interface CommandOptions {
|
||||||
/** Arguments to pass to the process. */
|
/** Arguments to pass to the process. */
|
||||||
args?: string[];
|
args?: readonly string[];
|
||||||
/**
|
/**
|
||||||
* The working directory of the process.
|
* The working directory of the process.
|
||||||
*
|
*
|
||||||
|
|
Loading…
Add table
Reference in a new issue