modify BasicHGWOptions definition to mark threads parameter as optional

this is used by hack, grow and weaken all of which dont require it to be defined
This commit is contained in:
TheMas3212
2021-12-23 14:42:06 +11:00
parent 88151efa61
commit e0aaa383a4

View File

@ -229,7 +229,7 @@ export interface AugmentationStats {
*/ */
export interface BasicHGWOptions { 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. */ /** 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. */ /** Set to true this action will affect the stock market. */
stock?: boolean; stock?: boolean;
} }