Skip to content

Commit

Permalink
Fix typings for copy actions
Browse files Browse the repository at this point in the history
  • Loading branch information
sibiraj-s committed Feb 1, 2022
1 parent 1dc902b commit 100686f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ type Copy = {
/** Copy destination */
destination: string;
/** Copy Options */
options: CopyActionOptions;
options?: CopyActionOptions;
/** Glob options */
globOptions: Omit<FgOptions, 'absolute' | 'cwd'>;
globOptions?: Omit<FgOptions, 'absolute' | 'cwd'>;
}[];

/** Delete individual files or entire directories */
Expand Down

0 comments on commit 100686f

Please sign in to comment.