@akanjs/store 0.9.38 → 0.9.40
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/package.json +1 -1
- package/src/baseSt.d.ts +4 -4
package/package.json
CHANGED
package/src/baseSt.d.ts
CHANGED
|
@@ -117,18 +117,18 @@ declare const RootStore_base: import("@akanjs/base").Type<{
|
|
|
117
117
|
currentPath: string;
|
|
118
118
|
connectStatus: "connected" | "connecting" | "disconnected";
|
|
119
119
|
}) => any)) => void;
|
|
120
|
-
readonly pick: (...fields: ("path" | "
|
|
120
|
+
readonly pick: (...fields: ("path" | "params" | "prefix" | "pathname" | "searchParams" | "innerHeight" | "innerWidth" | "csrLoaded" | "theme" | "tryAccount" | "keyboardHeight" | "pageState" | "devMode" | "getSelf" | "responsive" | "uiOperation" | "messages" | "tryJwt" | "trySignalType" | "tryRoles" | "deviceToken" | "currentPath" | "connectStatus")[]) => {
|
|
121
121
|
path: string;
|
|
122
|
-
prefix: string;
|
|
123
122
|
params: {
|
|
124
123
|
[key: string]: string;
|
|
125
124
|
};
|
|
126
|
-
|
|
127
|
-
innerWidth: number;
|
|
125
|
+
prefix: string;
|
|
128
126
|
pathname: string;
|
|
129
127
|
searchParams: {
|
|
130
128
|
[key: string]: string;
|
|
131
129
|
};
|
|
130
|
+
innerHeight: number;
|
|
131
|
+
innerWidth: number;
|
|
132
132
|
csrLoaded: boolean;
|
|
133
133
|
theme: string;
|
|
134
134
|
tryAccount: {
|