@3dsource/angular-unreal-module 0.0.20 → 0.0.22
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.
|
@@ -163,8 +163,10 @@ export declare const commandCompleted: import("@ngrx/store").ActionCreator<strin
|
|
|
163
163
|
export declare const setLoopBackCommandIsCompleted: import("@ngrx/store").ActionCreator<string, () => import("@ngrx/store").Action<string>>;
|
|
164
164
|
export declare const showUnrealErrorMessage: import("@ngrx/store").ActionCreator<string, (props: {
|
|
165
165
|
code: number | null;
|
|
166
|
+
error?: string;
|
|
166
167
|
}) => {
|
|
167
168
|
code: number | null;
|
|
169
|
+
error?: string;
|
|
168
170
|
} & import("@ngrx/store").Action<string>>;
|
|
169
171
|
export declare const initSignalling: import("@ngrx/store").ActionCreator<string, () => import("@ngrx/store").Action<string>>;
|
|
170
172
|
export declare const resetConfig: import("@ngrx/store").ActionCreator<string, () => import("@ngrx/store").Action<string>>;
|
|
@@ -51,6 +51,7 @@ export declare class UnrealEffects {
|
|
|
51
51
|
destroyConnectionAndRestart$: import("rxjs").Observable<import("@ngrx/store").Action<string>> & import("@ngrx/effects").CreateEffectMetadata;
|
|
52
52
|
showUnrealError$: import("rxjs").Observable<{
|
|
53
53
|
code: number | null;
|
|
54
|
+
error?: string;
|
|
54
55
|
} & import("@ngrx/store").Action<string>> & import("@ngrx/effects").CreateEffectMetadata;
|
|
55
56
|
initAppBySetDataChannelConnected$: import("rxjs").Observable<import("@ngrx/store").Action<string>> & import("@ngrx/effects").CreateEffectMetadata;
|
|
56
57
|
setViewportReadyBySetLoopBackCommandIsCompleted$: import("rxjs").Observable<{
|