@wayward/types 2.14.0-beta.dev.20241001.1 → 2.14.0-beta.dev.20241002.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.
|
@@ -30,6 +30,7 @@ export default abstract class InspectionsList<INSPECTIONS_HANDLER extends Inspec
|
|
|
30
30
|
private readonly paragraphInspectionsInvalid;
|
|
31
31
|
private inspectTypeFilter;
|
|
32
32
|
protected inspectionsHandler?: InspectionsHandler;
|
|
33
|
+
protected refreshInspectionsOfTypeIsRunning: boolean;
|
|
33
34
|
protected inspectionsHandlerUpdatedInspectionsCallback?: (_: any, inspectType: InspectType, inspections: HashSet<Inspection<any>>, oldInspections: HashSet<Inspection<any>> | undefined) => void;
|
|
34
35
|
private displayLevel;
|
|
35
36
|
private readonly inspectTypeWrappers;
|
|
@@ -41,7 +42,7 @@ export default abstract class InspectionsList<INSPECTIONS_HANDLER extends Inspec
|
|
|
41
42
|
refreshInspectTypeFilter(): this;
|
|
42
43
|
deregister(): void;
|
|
43
44
|
setDisplayLevel(displayLevel: InfoDisplayLevel): this;
|
|
44
|
-
refresh():
|
|
45
|
+
refresh(): this;
|
|
45
46
|
private refreshAsync;
|
|
46
47
|
protected abstract initializeInspections(): INSPECTIONS_HANDLER | undefined;
|
|
47
48
|
isValid?(): boolean;
|
package/package.json
CHANGED