1
0
Fork 0
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:
Kamil Ogórek 2023-02-10 18:09:02 +01:00 committed by GitHub
parent 39f131cd76
commit 68008bee51
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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.
*