Skip to content

Commit

Permalink
initialized values
Browse files Browse the repository at this point in the history
  • Loading branch information
idinium96 committed Aug 4, 2020
1 parent 968f281 commit 85647c5
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions src/classes/MyHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,13 @@ export = class MyHandler extends Handler {
userMaxReftoScrap: number;
};

private autokeysStatus: {
isBuyingKeys: boolean;
isBankingKeys: boolean;
checkAlertOnLowPure: boolean;
alreadyUpdatedToBank: boolean;
alreadyUpdatedToBuy: boolean;
alreadyUpdatedToSell: boolean;
private autokeysStatus = {
isBuyingKeys: false,
isBankingKeys: false,
checkAlertOnLowPure: false,
alreadyUpdatedToBank: false,
alreadyUpdatedToBuy: false,
alreadyUpdatedToSell: false
};

private invalidValueException: number;
Expand All @@ -81,6 +81,12 @@ export = class MyHandler extends Handler {
overstockedItemsSKU: string[];
dupedItemsSKU: string[];
dupedFailedItemsSKU: string[];
} = {
invalidItemsSKU: [],
invalidItemsValue: [],
overstockedItemsSKU: [],
dupedItemsSKU: [],
dupedFailedItemsSKU: []
};

private isTradingKeys = false;
Expand Down

0 comments on commit 85647c5

Please sign in to comment.