diff options
author | Kamil Ogórek <kamil.ogorek@gmail.com> | 2023-02-10 18:09:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-10 18:09:02 +0100 |
commit | 68008bee515e47fd9258d4f110dea6f352f2cd5b (patch) | |
tree | 1c5b3e7e75d215a6b1e53792205bb509bbc87673 | |
parent | 39f131cd762e62e6750b61a5edd6ed0e83995a77 (diff) |
fix(dts): make Deno.Command accept readonly prop in options.args (#17718)
-rw-r--r-- | cli/tsc/dts/lib.deno.unstable.d.ts | 2 |
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. * |