Merge pull request #2148 from TheMas3212/dev

modify BasicHGWOptions definition to mark threads parameter as optional
This commit is contained in:
hydroflame 2021-12-22 22:56:23 -05:00 committed by GitHub
commit eee72aa8d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -229,7 +229,7 @@ export interface AugmentationStats {
*/
export interface BasicHGWOptions {
/** Number of threads to use for this function. Must be less than or equal to the number of threads the script is running with. */
threads: number;
threads?: number;
/** Set to true this action will affect the stock market. */
stock?: boolean;
}