@noatgnu/cupcake-core 1.3.6 → 1.3.7
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.
package/index.d.ts
CHANGED
|
@@ -1207,13 +1207,13 @@ declare class WebSocketService {
|
|
|
1207
1207
|
protected destroy$: Subject<void>;
|
|
1208
1208
|
protected reconnectAttempts: number;
|
|
1209
1209
|
protected isConnecting: boolean;
|
|
1210
|
-
protected connectionState: _angular_core.WritableSignal<"
|
|
1210
|
+
protected connectionState: _angular_core.WritableSignal<"disconnected" | "connecting" | "connected" | "error">;
|
|
1211
1211
|
protected lastError: _angular_core.WritableSignal<string | null>;
|
|
1212
1212
|
protected messageSubject: Subject<WebSocketMessage>;
|
|
1213
1213
|
protected connectionSubject: BehaviorSubject<boolean>;
|
|
1214
1214
|
readonly messages$: Observable<WebSocketMessage>;
|
|
1215
1215
|
readonly isConnected$: Observable<boolean>;
|
|
1216
|
-
readonly connectionState$: _angular_core.Signal<"
|
|
1216
|
+
readonly connectionState$: _angular_core.Signal<"disconnected" | "connecting" | "connected" | "error">;
|
|
1217
1217
|
readonly lastError$: _angular_core.Signal<string | null>;
|
|
1218
1218
|
protected config_token: _noatgnu_cupcake_core.CupcakeCoreConfig;
|
|
1219
1219
|
protected endpoint: string;
|
package/package.json
CHANGED