Skip to content

Commit

Permalink
fix(dts): make Deno.Command accept readonly prop in options.args (#17718
Browse files Browse the repository at this point in the history
)
  • Loading branch information
kamilogorek authored Feb 10, 2023
1 parent 39f131c commit 68008be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/tsc/dts/lib.deno.unstable.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*
Expand Down

0 comments on commit 68008be

Please sign in to comment.