Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mark all Options parameters as optional #11

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ interface Options {
*
* @default false
*/
quiet: boolean;
quiet?: boolean;

/**
* Setting to `true` will ignore any errors that the command throws.
* It will also ignore return values.
*
* @default false
*/
ignoreErrors: boolean;
ignoreErrors?: boolean;

/**
* Sets the current working directory for the command.
Expand All @@ -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.
Expand All @@ -37,7 +37,7 @@ interface Options {
*
* @default {}
*/
env: object
env?: object
}

/**
Expand Down