From 68008bee515e47fd9258d4f110dea6f352f2cd5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20Og=C3=B3rek?= Date: Fri, 10 Feb 2023 18:09:02 +0100 Subject: [PATCH] fix(dts): make Deno.Command accept readonly prop in options.args (#17718) --- cli/tsc/dts/lib.deno.unstable.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/tsc/dts/lib.deno.unstable.d.ts b/cli/tsc/dts/lib.deno.unstable.d.ts index 5ffde749b6..898343d800 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. *