@truelab/truelogic 0.1.12 → 0.1.13
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.
|
@@ -89,7 +89,7 @@ export declare const store: import("@reduxjs/toolkit").EnhancedStore<{
|
|
|
89
89
|
isProd: boolean;
|
|
90
90
|
};
|
|
91
91
|
error: import("../shared/model/app").TAppError;
|
|
92
|
-
test
|
|
92
|
+
test: string;
|
|
93
93
|
};
|
|
94
94
|
sound: {
|
|
95
95
|
isActive: boolean;
|
|
@@ -323,7 +323,7 @@ export declare const store: import("@reduxjs/toolkit").EnhancedStore<{
|
|
|
323
323
|
isProd: boolean;
|
|
324
324
|
};
|
|
325
325
|
error: import("../shared/model/app").TAppError;
|
|
326
|
-
test
|
|
326
|
+
test: string;
|
|
327
327
|
};
|
|
328
328
|
sound: {
|
|
329
329
|
isActive: boolean;
|
|
@@ -87,7 +87,7 @@ export declare const useAppDispatch: import("react-redux").UseDispatch<import("r
|
|
|
87
87
|
isProd: boolean;
|
|
88
88
|
};
|
|
89
89
|
error: import("../../model/app").TAppError;
|
|
90
|
-
test
|
|
90
|
+
test: string;
|
|
91
91
|
};
|
|
92
92
|
sound: {
|
|
93
93
|
isActive: boolean;
|
|
@@ -321,7 +321,7 @@ export declare const useAppSelector: import("react-redux").UseSelector<{
|
|
|
321
321
|
isProd: boolean;
|
|
322
322
|
};
|
|
323
323
|
error: import("../../model/app").TAppError;
|
|
324
|
-
test
|
|
324
|
+
test: string;
|
|
325
325
|
};
|
|
326
326
|
sound: {
|
|
327
327
|
isActive: boolean;
|
|
@@ -20,7 +20,7 @@ type TAppState = {
|
|
|
20
20
|
urlParams: TUrlParams;
|
|
21
21
|
env: TAppEnv;
|
|
22
22
|
error: TAppError;
|
|
23
|
-
test
|
|
23
|
+
test: string;
|
|
24
24
|
};
|
|
25
25
|
export declare const setScreen: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<TScreen, "app/setScreen">, hideUI: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"app/hideUI">, showUI: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"app/showUI">, setAppIsOffline: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<boolean, "app/setAppIsOffline">, setUrlParams: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<TUrlParams, "app/setUrlParams">, setAppEnv: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<TAppEnv, "app/setAppEnv">, setAppError: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<TAppError, "app/setAppError">, setAppTest: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<string, "app/setAppTest">, setIsReplay: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"app/setIsReplay">;
|
|
26
26
|
export declare const gameReady: TAppThunkAction;
|