react-memory-optimization 0.0.25 → 0.0.26
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.
|
@@ -26,6 +26,7 @@ import { CasinoHistoryGamesSubscriber } from 'store/operations/entities/casinoHi
|
|
|
26
26
|
import { SubscribeCasinoCategoriesInfoProps } from 'store/casino/entities/categories/types';
|
|
27
27
|
import { BettingEntitySubscribers } from 'store/betting/types';
|
|
28
28
|
import { SubscribeUserKeys } from 'store/user/types';
|
|
29
|
+
import { ResponseAdapter } from 'service/responseAdapter';
|
|
29
30
|
export declare enum ESocketCallbackStep {
|
|
30
31
|
Unknown = 0,
|
|
31
32
|
Init = 1,
|
|
@@ -131,6 +132,7 @@ export type SendCommand = (key: string, data: {
|
|
|
131
132
|
}) => void;
|
|
132
133
|
export type CallbackStatus = (t: string, r?: any) => void;
|
|
133
134
|
export interface SocketInterface {
|
|
135
|
+
_transport: null | ResponseAdapter;
|
|
134
136
|
experimentalFeatures: ExperimentalFeatures;
|
|
135
137
|
init: () => void;
|
|
136
138
|
sendCommand: SendCommand;
|