summaryrefslogtreecommitdiff
path: root/cli/tsc/dts/lib.deno.unstable.d.ts
diff options
context:
space:
mode:
authorKamil Ogórek <kamil.ogorek@gmail.com>2023-02-10 18:09:02 +0100
committerGitHub <noreply@github.com>2023-02-10 18:09:02 +0100
commit68008bee515e47fd9258d4f110dea6f352f2cd5b (patch)
tree1c5b3e7e75d215a6b1e53792205bb509bbc87673 /cli/tsc/dts/lib.deno.unstable.d.ts
parent39f131cd762e62e6750b61a5edd6ed0e83995a77 (diff)
fix(dts): make Deno.Command accept readonly prop in options.args (#17718)
Diffstat (limited to 'cli/tsc/dts/lib.deno.unstable.d.ts')
-rw-r--r--cli/tsc/dts/lib.deno.unstable.d.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tsc/dts/lib.deno.unstable.d.ts b/cli/tsc/dts/lib.deno.unstable.d.ts
index 5ffde749b..898343d80 100644
--- a/cli/tsc/dts/lib.deno.unstable.d.ts
+++ b/cli/tsc/dts/lib.deno.unstable.d.ts
@@ -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.
*