@wayward/types 2.13.3-beta.dev.20230701.1 → 2.13.3-beta.dev.20230702.2
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.
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
import type IDataStorage from "save/datastorage/IDataStorage";
|
|
12
12
|
import type { ISaveObject } from "save/ISaveManager";
|
|
13
13
|
export default class LocalStorageDataStorage implements IDataStorage {
|
|
14
|
+
static clearLocalStorage(): void;
|
|
14
15
|
initialize(): void;
|
|
15
16
|
isEnabled(): boolean;
|
|
16
17
|
isSlotUsed(slot: number, _interval?: number): boolean;
|
|
@@ -22,7 +22,7 @@ export default class ModRow extends CheckButton {
|
|
|
22
22
|
private readonly buttonHandler;
|
|
23
23
|
constructor(index: number, info: IModInfo);
|
|
24
24
|
shouldDisableButtonButtonsOnUnchecked(): boolean;
|
|
25
|
-
setEnabled(enabled: boolean, prompts?: boolean): Promise<boolean>;
|
|
25
|
+
setEnabled(enabled: boolean, prompts?: boolean, changingAllStates?: boolean): Promise<boolean>;
|
|
26
26
|
protected onToggle(checked: boolean): Promise<void>;
|
|
27
27
|
private checkDependants;
|
|
28
28
|
private checkDependencies;
|
package/package.json
CHANGED