mirror of
https://github.com/denoland/deno.git
synced 2024-11-24 15:19:26 -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 {
|
||||
/** Arguments to pass to the process. */
|
||||
args?: string[];
|
||||
args?: readonly string[];
|
||||
/**
|
||||
* The working directory of the process.
|
||||
*
|
||||
|
|
Loading…
Reference in a new issue