@wayward/types 2.12.2-beta.dev.20221130.1 → 2.12.2-beta.dev.20221201.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -22,8 +22,8 @@ export default class ItemRecipeRequirementChecker {
|
|
|
22
22
|
itemComponentsCanBurn: boolean;
|
|
23
23
|
private numComponentsNeeded;
|
|
24
24
|
private baseComponent;
|
|
25
|
-
private components;
|
|
26
|
-
private componentItems;
|
|
25
|
+
private readonly components;
|
|
26
|
+
private readonly componentItems;
|
|
27
27
|
private recipe;
|
|
28
28
|
private adjacentContainers;
|
|
29
29
|
private readonly cachedItems;
|
|
@@ -48,7 +48,7 @@ export default class Steamworks extends EventEmitter.Host<ISteamworksEvents> {
|
|
|
48
48
|
private _isGameOverlayActive;
|
|
49
49
|
private _isTraceRecording;
|
|
50
50
|
private _osPlatform;
|
|
51
|
-
private _intervalIds;
|
|
51
|
+
private readonly _intervalIds;
|
|
52
52
|
get isGameOverlayActive(): boolean;
|
|
53
53
|
get isRunningOnSteamDeck(): boolean;
|
|
54
54
|
get isRunningOnBatteryPower(): boolean;
|
package/package.json
CHANGED