From 7dc4ae5a715477eff31c8cad99e454592180579f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timo=20K=C3=A4m=C3=A4r=C3=A4inen?= Date: Tue, 18 Feb 2020 16:05:09 +0200 Subject: [PATCH] Mark all Options parameters as optional Currently the types enforce you to either A) provide no options or B) provide a value for every option. In reality they all have default values and can be left "undefined" so they should be optional in the types too. --- index.d.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/index.d.ts b/index.d.ts index f3452ad..fda4596 100644 --- a/index.d.ts +++ b/index.d.ts @@ -4,7 +4,7 @@ interface Options { * * @default false */ - quiet: boolean; + quiet?: boolean; /** * Setting to `true` will ignore any errors that the command throws. @@ -12,7 +12,7 @@ interface Options { * * @default false */ - ignoreErrors: boolean; + ignoreErrors?: boolean; /** * Sets the current working directory for the command. @@ -21,14 +21,14 @@ interface Options { * @default `process.cwd()` * @link http://nodejs.org/api/process.html#process_process_cwd */ - cwd: string; + cwd?: string; /** * The max time(in milliseconds) that the command is allowed to run. * * @default undefined (no timeout) */ - timeout: number; + timeout?: number; /** * This object will be **added to** the normal environment, overwriting defaults with what you pass in. @@ -37,7 +37,7 @@ interface Options { * * @default {} */ - env: object + env?: object } /**