x-state-lib 0.3.42 → 0.3.43
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/dist/index.d.ts +275 -1
- package/dist/index.js +1 -0
- package/package.json +8 -4
- package/dist/state/app.d.ts +0 -100
- package/dist/state/compute.d.ts +0 -72
- package/dist/state/data.d.ts +0 -34
- package/dist/state/index.d.ts +0 -5
- package/dist/state/resource.d.ts +0 -21
- package/dist/state/runtime.d.ts +0 -16
- package/dist/state/state.d.ts +0 -11
package/dist/index.d.ts
CHANGED
|
@@ -1 +1,275 @@
|
|
|
1
|
-
|
|
1
|
+
import { Type } from 'x-essential-lib';
|
|
2
|
+
|
|
3
|
+
export declare type ActiveApp = {
|
|
4
|
+
id: string;
|
|
5
|
+
compGroups: CompGroup[];
|
|
6
|
+
comps: Comp[];
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
export declare type ActiveComp = {
|
|
10
|
+
id: string;
|
|
11
|
+
meta: CompMeta;
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
export declare type ActiveFlow = {
|
|
15
|
+
id: string;
|
|
16
|
+
name: string;
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
export declare type ActiveFunc = {
|
|
20
|
+
id: string;
|
|
21
|
+
name: string;
|
|
22
|
+
inputs?: Field_2[];
|
|
23
|
+
outputs?: Field_2[];
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
export declare type ActiveObjectApp = {
|
|
27
|
+
type: 'page' | 'comp';
|
|
28
|
+
subtype: string;
|
|
29
|
+
version: string;
|
|
30
|
+
nodes: {
|
|
31
|
+
id: string;
|
|
32
|
+
key: string;
|
|
33
|
+
alias: string;
|
|
34
|
+
slot?: string;
|
|
35
|
+
comp?: string;
|
|
36
|
+
adaptSlot?: string;
|
|
37
|
+
}[];
|
|
38
|
+
};
|
|
39
|
+
|
|
40
|
+
export declare type ActiveObjectCompute = {
|
|
41
|
+
type: 'func' | 'flow';
|
|
42
|
+
version: string;
|
|
43
|
+
};
|
|
44
|
+
|
|
45
|
+
export declare type ActivePage = {
|
|
46
|
+
id: string;
|
|
47
|
+
meta: PageMeta;
|
|
48
|
+
};
|
|
49
|
+
|
|
50
|
+
export declare type App = {
|
|
51
|
+
appList: AppListEntry[];
|
|
52
|
+
activeApp: ActiveApp;
|
|
53
|
+
activePage: ActivePage;
|
|
54
|
+
activeComp: ActiveComp;
|
|
55
|
+
activeObject: ActiveObjectApp;
|
|
56
|
+
depends: {
|
|
57
|
+
[key: string]: Depend;
|
|
58
|
+
};
|
|
59
|
+
};
|
|
60
|
+
|
|
61
|
+
export declare type AppListEntry = {
|
|
62
|
+
id: string;
|
|
63
|
+
name: string;
|
|
64
|
+
pages: {
|
|
65
|
+
id: string;
|
|
66
|
+
name: string;
|
|
67
|
+
}[];
|
|
68
|
+
};
|
|
69
|
+
|
|
70
|
+
declare type Comp = {
|
|
71
|
+
id: string;
|
|
72
|
+
groupId: string;
|
|
73
|
+
name: string;
|
|
74
|
+
position: number;
|
|
75
|
+
};
|
|
76
|
+
|
|
77
|
+
declare type CompGroup = {
|
|
78
|
+
id: string;
|
|
79
|
+
name: string;
|
|
80
|
+
position: number;
|
|
81
|
+
};
|
|
82
|
+
|
|
83
|
+
declare type CompMeta = {
|
|
84
|
+
version: string;
|
|
85
|
+
properties?: Field[];
|
|
86
|
+
methods?: Method[];
|
|
87
|
+
events?: Event_2[];
|
|
88
|
+
slots?: Slot[];
|
|
89
|
+
states?: Field[];
|
|
90
|
+
};
|
|
91
|
+
|
|
92
|
+
export declare type Compute = {
|
|
93
|
+
spaces: ComputeSpace[];
|
|
94
|
+
activeFunc: ActiveFunc;
|
|
95
|
+
activeFlow: ActiveFlow;
|
|
96
|
+
activeObject: ActiveObjectCompute;
|
|
97
|
+
};
|
|
98
|
+
|
|
99
|
+
export declare type ComputeSpace = {
|
|
100
|
+
id: string;
|
|
101
|
+
name: string;
|
|
102
|
+
funcGroups: FuncGroup[];
|
|
103
|
+
funcs: Func[];
|
|
104
|
+
flowGroups: FlowGroup[];
|
|
105
|
+
flows: Flow[];
|
|
106
|
+
position: number;
|
|
107
|
+
};
|
|
108
|
+
|
|
109
|
+
export declare type Data = {
|
|
110
|
+
spaces: DataSpace[];
|
|
111
|
+
};
|
|
112
|
+
|
|
113
|
+
export declare type DataSpace = {
|
|
114
|
+
id: string;
|
|
115
|
+
name: string;
|
|
116
|
+
tableGroups: TableGroup[];
|
|
117
|
+
tables: Table[];
|
|
118
|
+
position: number;
|
|
119
|
+
};
|
|
120
|
+
|
|
121
|
+
export declare type Depend = {
|
|
122
|
+
name: string;
|
|
123
|
+
meta: CompMeta;
|
|
124
|
+
};
|
|
125
|
+
|
|
126
|
+
export declare interface DirEntry {
|
|
127
|
+
id: string;
|
|
128
|
+
name: string;
|
|
129
|
+
children: DirEntry[];
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
declare type Event_2 = {
|
|
133
|
+
id: string;
|
|
134
|
+
name: string;
|
|
135
|
+
params?: Field[];
|
|
136
|
+
};
|
|
137
|
+
|
|
138
|
+
declare type Field = {
|
|
139
|
+
id: string;
|
|
140
|
+
name: string;
|
|
141
|
+
type: Type;
|
|
142
|
+
};
|
|
143
|
+
|
|
144
|
+
declare type Field_2 = {
|
|
145
|
+
id: string;
|
|
146
|
+
name: string;
|
|
147
|
+
type: Type;
|
|
148
|
+
};
|
|
149
|
+
|
|
150
|
+
export declare type Flow = {
|
|
151
|
+
id: string;
|
|
152
|
+
spaceId: string;
|
|
153
|
+
groupId: string;
|
|
154
|
+
name: string;
|
|
155
|
+
position: number;
|
|
156
|
+
};
|
|
157
|
+
|
|
158
|
+
export declare type FlowGroup = {
|
|
159
|
+
id: string;
|
|
160
|
+
name: string;
|
|
161
|
+
position: number;
|
|
162
|
+
};
|
|
163
|
+
|
|
164
|
+
export declare type Func = {
|
|
165
|
+
id: string;
|
|
166
|
+
spaceId: string;
|
|
167
|
+
groupId: string;
|
|
168
|
+
name: string;
|
|
169
|
+
inputs: {
|
|
170
|
+
id: string;
|
|
171
|
+
name: string;
|
|
172
|
+
type: Type;
|
|
173
|
+
}[];
|
|
174
|
+
outputs: {
|
|
175
|
+
id: string;
|
|
176
|
+
name: string;
|
|
177
|
+
type: Type;
|
|
178
|
+
}[];
|
|
179
|
+
position: number;
|
|
180
|
+
};
|
|
181
|
+
|
|
182
|
+
export declare type FuncGroup = {
|
|
183
|
+
id: string;
|
|
184
|
+
name: string;
|
|
185
|
+
position: number;
|
|
186
|
+
};
|
|
187
|
+
|
|
188
|
+
export declare const globalState: State;
|
|
189
|
+
|
|
190
|
+
export declare function initApp(): App;
|
|
191
|
+
|
|
192
|
+
export declare function initCompute(): Compute;
|
|
193
|
+
|
|
194
|
+
export declare function initData(): Data;
|
|
195
|
+
|
|
196
|
+
export declare function initResource(): Resource;
|
|
197
|
+
|
|
198
|
+
declare type Method = {
|
|
199
|
+
id: string;
|
|
200
|
+
name: string;
|
|
201
|
+
inputs?: Field[];
|
|
202
|
+
outputs?: Field[];
|
|
203
|
+
};
|
|
204
|
+
|
|
205
|
+
declare type PageMeta = {
|
|
206
|
+
version: string;
|
|
207
|
+
arguments?: Field[];
|
|
208
|
+
states?: Field[];
|
|
209
|
+
};
|
|
210
|
+
|
|
211
|
+
export declare type Resource = {
|
|
212
|
+
spaces: ResourceSpace[];
|
|
213
|
+
};
|
|
214
|
+
|
|
215
|
+
export declare interface ResourceEntry {
|
|
216
|
+
id: string;
|
|
217
|
+
dirid: string;
|
|
218
|
+
name: string;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
export declare type ResourceSpace = {
|
|
222
|
+
id: string;
|
|
223
|
+
name: string;
|
|
224
|
+
dirTree: DirEntry;
|
|
225
|
+
resources: ResourceEntry[];
|
|
226
|
+
position: number;
|
|
227
|
+
};
|
|
228
|
+
|
|
229
|
+
declare type Slot = {
|
|
230
|
+
id: string;
|
|
231
|
+
name: string;
|
|
232
|
+
properties?: Field[];
|
|
233
|
+
methods?: Method[];
|
|
234
|
+
events?: Event_2[];
|
|
235
|
+
};
|
|
236
|
+
|
|
237
|
+
export declare type State = {
|
|
238
|
+
app: App;
|
|
239
|
+
compute: Compute;
|
|
240
|
+
data: Data;
|
|
241
|
+
resource: Resource;
|
|
242
|
+
};
|
|
243
|
+
|
|
244
|
+
export declare type Table = {
|
|
245
|
+
id: string;
|
|
246
|
+
spaceId: string;
|
|
247
|
+
groupId: string;
|
|
248
|
+
name: string;
|
|
249
|
+
columns: {
|
|
250
|
+
id: string;
|
|
251
|
+
name: string;
|
|
252
|
+
type: string;
|
|
253
|
+
extend: string;
|
|
254
|
+
}[];
|
|
255
|
+
indexes: {
|
|
256
|
+
id: string;
|
|
257
|
+
columns: string[];
|
|
258
|
+
unique: boolean;
|
|
259
|
+
}[];
|
|
260
|
+
position: number;
|
|
261
|
+
};
|
|
262
|
+
|
|
263
|
+
export declare type TableGroup = {
|
|
264
|
+
id: string;
|
|
265
|
+
name: string;
|
|
266
|
+
position: number;
|
|
267
|
+
};
|
|
268
|
+
|
|
269
|
+
export declare function toCompMeta(src: CompMeta): CompMeta;
|
|
270
|
+
|
|
271
|
+
export declare function toFields(srcFields?: Field_2[]): Field_2[] | undefined;
|
|
272
|
+
|
|
273
|
+
export declare function toPageMeta(src: PageMeta): PageMeta;
|
|
274
|
+
|
|
275
|
+
export { }
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "x-state-lib",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.3.
|
|
4
|
+
"version": "0.3.43",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -27,18 +27,21 @@
|
|
|
27
27
|
"vuetify": "^4.0.2"
|
|
28
28
|
},
|
|
29
29
|
"peerDependencies": {
|
|
30
|
-
"x-error-lib": "^0.5.
|
|
31
|
-
"x-essential-lib": "^0.9.
|
|
32
|
-
"x-runtime-lib": "^0.
|
|
30
|
+
"x-error-lib": "^0.5.17",
|
|
31
|
+
"x-essential-lib": "^0.9.30",
|
|
32
|
+
"x-runtime-lib": "^0.9.31"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@eslint/js": "^10.0.1",
|
|
36
|
+
"@tsconfig/node24": "^24.0.4",
|
|
36
37
|
"@types/lodash-es": "^4.17.12",
|
|
37
38
|
"@types/node": "^25.4.0",
|
|
38
39
|
"@vitejs/plugin-vue": "^6.0.4",
|
|
40
|
+
"@vue/tsconfig": "^0.9.1",
|
|
39
41
|
"eslint": "^10.0.3",
|
|
40
42
|
"eslint-config-prettier": "^10.1.8",
|
|
41
43
|
"eslint-plugin-prettier": "^5.5.5",
|
|
44
|
+
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
42
45
|
"eslint-plugin-vue": "^10.8.0",
|
|
43
46
|
"globals": "^17.4.0",
|
|
44
47
|
"husky": "^9.1.7",
|
|
@@ -49,6 +52,7 @@
|
|
|
49
52
|
"typescript-eslint": "^8.57.0",
|
|
50
53
|
"vite": "^8.0.0",
|
|
51
54
|
"vite-plugin-css-injected-by-js": "^4.0.1",
|
|
55
|
+
"vite-plugin-dts": "^4.5.4",
|
|
52
56
|
"vite-plugin-vuetify": "^2.1.3",
|
|
53
57
|
"vue-eslint-parser": "^10.4.0",
|
|
54
58
|
"vue-tsc": "^3.2.5"
|
package/dist/state/app.d.ts
DELETED
|
@@ -1,100 +0,0 @@
|
|
|
1
|
-
import { Type } from 'x-essential-lib';
|
|
2
|
-
export type AppListEntry = {
|
|
3
|
-
id: string;
|
|
4
|
-
name: string;
|
|
5
|
-
pages: {
|
|
6
|
-
id: string;
|
|
7
|
-
name: string;
|
|
8
|
-
}[];
|
|
9
|
-
};
|
|
10
|
-
type CompGroup = {
|
|
11
|
-
id: string;
|
|
12
|
-
name: string;
|
|
13
|
-
position: number;
|
|
14
|
-
};
|
|
15
|
-
type Comp = {
|
|
16
|
-
id: string;
|
|
17
|
-
groupId: string;
|
|
18
|
-
name: string;
|
|
19
|
-
position: number;
|
|
20
|
-
};
|
|
21
|
-
export type ActiveApp = {
|
|
22
|
-
id: string;
|
|
23
|
-
compGroups: CompGroup[];
|
|
24
|
-
comps: Comp[];
|
|
25
|
-
};
|
|
26
|
-
type Field = {
|
|
27
|
-
id: string;
|
|
28
|
-
name: string;
|
|
29
|
-
type: Type;
|
|
30
|
-
};
|
|
31
|
-
type PageMeta = {
|
|
32
|
-
version: string;
|
|
33
|
-
arguments?: Field[];
|
|
34
|
-
states?: Field[];
|
|
35
|
-
};
|
|
36
|
-
export type ActivePage = {
|
|
37
|
-
id: string;
|
|
38
|
-
meta: PageMeta;
|
|
39
|
-
};
|
|
40
|
-
export declare function toPageMeta(src: PageMeta): PageMeta;
|
|
41
|
-
type Method = {
|
|
42
|
-
id: string;
|
|
43
|
-
name: string;
|
|
44
|
-
inputs?: Field[];
|
|
45
|
-
outputs?: Field[];
|
|
46
|
-
};
|
|
47
|
-
type Event = {
|
|
48
|
-
id: string;
|
|
49
|
-
name: string;
|
|
50
|
-
params?: Field[];
|
|
51
|
-
};
|
|
52
|
-
type Slot = {
|
|
53
|
-
id: string;
|
|
54
|
-
name: string;
|
|
55
|
-
properties?: Field[];
|
|
56
|
-
methods?: Method[];
|
|
57
|
-
events?: Event[];
|
|
58
|
-
};
|
|
59
|
-
type CompMeta = {
|
|
60
|
-
version: string;
|
|
61
|
-
properties?: Field[];
|
|
62
|
-
methods?: Method[];
|
|
63
|
-
events?: Event[];
|
|
64
|
-
slots?: Slot[];
|
|
65
|
-
states?: Field[];
|
|
66
|
-
};
|
|
67
|
-
export type ActiveComp = {
|
|
68
|
-
id: string;
|
|
69
|
-
meta: CompMeta;
|
|
70
|
-
};
|
|
71
|
-
export declare function toCompMeta(src: CompMeta): CompMeta;
|
|
72
|
-
export type ActiveObjectApp = {
|
|
73
|
-
type: 'page' | 'comp';
|
|
74
|
-
subtype: string;
|
|
75
|
-
version: string;
|
|
76
|
-
nodes: {
|
|
77
|
-
id: string;
|
|
78
|
-
key: string;
|
|
79
|
-
alias: string;
|
|
80
|
-
slot?: string;
|
|
81
|
-
comp?: string;
|
|
82
|
-
adaptSlot?: string;
|
|
83
|
-
}[];
|
|
84
|
-
};
|
|
85
|
-
export type Depend = {
|
|
86
|
-
name: string;
|
|
87
|
-
meta: CompMeta;
|
|
88
|
-
};
|
|
89
|
-
export type App = {
|
|
90
|
-
appList: AppListEntry[];
|
|
91
|
-
activeApp: ActiveApp;
|
|
92
|
-
activePage: ActivePage;
|
|
93
|
-
activeComp: ActiveComp;
|
|
94
|
-
activeObject: ActiveObjectApp;
|
|
95
|
-
depends: {
|
|
96
|
-
[key: string]: Depend;
|
|
97
|
-
};
|
|
98
|
-
};
|
|
99
|
-
export declare function initApp(): App;
|
|
100
|
-
export {};
|
package/dist/state/compute.d.ts
DELETED
|
@@ -1,72 +0,0 @@
|
|
|
1
|
-
import { Type } from 'x-essential-lib';
|
|
2
|
-
export type FuncGroup = {
|
|
3
|
-
id: string;
|
|
4
|
-
name: string;
|
|
5
|
-
position: number;
|
|
6
|
-
};
|
|
7
|
-
export type Func = {
|
|
8
|
-
id: string;
|
|
9
|
-
spaceId: string;
|
|
10
|
-
groupId: string;
|
|
11
|
-
name: string;
|
|
12
|
-
inputs: {
|
|
13
|
-
id: string;
|
|
14
|
-
name: string;
|
|
15
|
-
type: Type;
|
|
16
|
-
}[];
|
|
17
|
-
outputs: {
|
|
18
|
-
id: string;
|
|
19
|
-
name: string;
|
|
20
|
-
type: Type;
|
|
21
|
-
}[];
|
|
22
|
-
position: number;
|
|
23
|
-
};
|
|
24
|
-
export type FlowGroup = {
|
|
25
|
-
id: string;
|
|
26
|
-
name: string;
|
|
27
|
-
position: number;
|
|
28
|
-
};
|
|
29
|
-
export type Flow = {
|
|
30
|
-
id: string;
|
|
31
|
-
spaceId: string;
|
|
32
|
-
groupId: string;
|
|
33
|
-
name: string;
|
|
34
|
-
position: number;
|
|
35
|
-
};
|
|
36
|
-
export type ComputeSpace = {
|
|
37
|
-
id: string;
|
|
38
|
-
name: string;
|
|
39
|
-
funcGroups: FuncGroup[];
|
|
40
|
-
funcs: Func[];
|
|
41
|
-
flowGroups: FlowGroup[];
|
|
42
|
-
flows: Flow[];
|
|
43
|
-
position: number;
|
|
44
|
-
};
|
|
45
|
-
type Field = {
|
|
46
|
-
id: string;
|
|
47
|
-
name: string;
|
|
48
|
-
type: Type;
|
|
49
|
-
};
|
|
50
|
-
export type ActiveFunc = {
|
|
51
|
-
id: string;
|
|
52
|
-
name: string;
|
|
53
|
-
inputs?: Field[];
|
|
54
|
-
outputs?: Field[];
|
|
55
|
-
};
|
|
56
|
-
export declare function toFields(srcFields?: Field[]): Field[] | undefined;
|
|
57
|
-
export type ActiveFlow = {
|
|
58
|
-
id: string;
|
|
59
|
-
name: string;
|
|
60
|
-
};
|
|
61
|
-
export type ActiveObjectCompute = {
|
|
62
|
-
type: 'func' | 'flow';
|
|
63
|
-
version: string;
|
|
64
|
-
};
|
|
65
|
-
export type Compute = {
|
|
66
|
-
spaces: ComputeSpace[];
|
|
67
|
-
activeFunc: ActiveFunc;
|
|
68
|
-
activeFlow: ActiveFlow;
|
|
69
|
-
activeObject: ActiveObjectCompute;
|
|
70
|
-
};
|
|
71
|
-
export declare function initCompute(): Compute;
|
|
72
|
-
export {};
|
package/dist/state/data.d.ts
DELETED
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
export type TableGroup = {
|
|
2
|
-
id: string;
|
|
3
|
-
name: string;
|
|
4
|
-
position: number;
|
|
5
|
-
};
|
|
6
|
-
export type Table = {
|
|
7
|
-
id: string;
|
|
8
|
-
spaceId: string;
|
|
9
|
-
groupId: string;
|
|
10
|
-
name: string;
|
|
11
|
-
columns: {
|
|
12
|
-
id: string;
|
|
13
|
-
name: string;
|
|
14
|
-
type: string;
|
|
15
|
-
extend: string;
|
|
16
|
-
}[];
|
|
17
|
-
indexes: {
|
|
18
|
-
id: string;
|
|
19
|
-
columns: string[];
|
|
20
|
-
unique: boolean;
|
|
21
|
-
}[];
|
|
22
|
-
position: number;
|
|
23
|
-
};
|
|
24
|
-
export type DataSpace = {
|
|
25
|
-
id: string;
|
|
26
|
-
name: string;
|
|
27
|
-
tableGroups: TableGroup[];
|
|
28
|
-
tables: Table[];
|
|
29
|
-
position: number;
|
|
30
|
-
};
|
|
31
|
-
export type Data = {
|
|
32
|
-
spaces: DataSpace[];
|
|
33
|
-
};
|
|
34
|
-
export declare function initData(): Data;
|
package/dist/state/index.d.ts
DELETED
package/dist/state/resource.d.ts
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
export interface DirEntry {
|
|
2
|
-
id: string;
|
|
3
|
-
name: string;
|
|
4
|
-
children: DirEntry[];
|
|
5
|
-
}
|
|
6
|
-
export interface ResourceEntry {
|
|
7
|
-
id: string;
|
|
8
|
-
dirid: string;
|
|
9
|
-
name: string;
|
|
10
|
-
}
|
|
11
|
-
export type ResourceSpace = {
|
|
12
|
-
id: string;
|
|
13
|
-
name: string;
|
|
14
|
-
dirTree: DirEntry;
|
|
15
|
-
resources: ResourceEntry[];
|
|
16
|
-
position: number;
|
|
17
|
-
};
|
|
18
|
-
export type Resource = {
|
|
19
|
-
spaces: ResourceSpace[];
|
|
20
|
-
};
|
|
21
|
-
export declare function initResource(): Resource;
|
package/dist/state/runtime.d.ts
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { ZProperty } from 'x-runtime-lib';
|
|
2
|
-
type Property = {
|
|
3
|
-
keys: string;
|
|
4
|
-
names: string[];
|
|
5
|
-
raw: ZProperty;
|
|
6
|
-
};
|
|
7
|
-
type Properties = {
|
|
8
|
-
[key: string]: {
|
|
9
|
-
[tag: string]: Property[];
|
|
10
|
-
};
|
|
11
|
-
};
|
|
12
|
-
export type Runtime = {
|
|
13
|
-
properties: Properties;
|
|
14
|
-
};
|
|
15
|
-
export declare function initRuntime(): Runtime;
|
|
16
|
-
export {};
|
package/dist/state/state.d.ts
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { App } from './app';
|
|
2
|
-
import { Compute } from './compute';
|
|
3
|
-
import { Data } from './data';
|
|
4
|
-
import { Resource } from './resource';
|
|
5
|
-
export type State = {
|
|
6
|
-
app: App;
|
|
7
|
-
compute: Compute;
|
|
8
|
-
data: Data;
|
|
9
|
-
resource: Resource;
|
|
10
|
-
};
|
|
11
|
-
export declare const globalState: State;
|