vue-fn 0.1.0-rc.3 → 0.1.0-rc.4
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/domain/index.d.ts +1 -0
- package/domain/index.mjs +198 -162
- package/domain/index.mjs.map +1 -1
- package/domain-server/index.d.ts +1 -0
- package/domain-server/index.mjs +198 -162
- package/domain-server/index.mjs.map +1 -1
- package/package.json +1 -1
package/domain/index.d.ts
CHANGED
|
@@ -4,4 +4,5 @@ export type { DomainPlugin, DomainHotSwapPlugin, DomainSetupPlugin } from './plu
|
|
|
4
4
|
export { createPluginHelperByAgg, createPluginHelperByAggCreator } from './plugin';
|
|
5
5
|
export type { DomainSingletonAgg, DomainMultiInstanceAgg } from './agg';
|
|
6
6
|
export { createSingletonAgg, createMultiInstanceAgg } from './agg';
|
|
7
|
+
export { bindRef, bindDeepRef } from './bind';
|
|
7
8
|
export * as Utils from './common';
|
package/domain/index.mjs
CHANGED
|
@@ -1,116 +1,116 @@
|
|
|
1
|
-
import { t as
|
|
2
|
-
import { ref as
|
|
3
|
-
function
|
|
4
|
-
function
|
|
5
|
-
let
|
|
6
|
-
const
|
|
7
|
-
function e(
|
|
8
|
-
const f =
|
|
9
|
-
|
|
1
|
+
import { t as z } from "../index-Dhhr_iXc.js";
|
|
2
|
+
import { ref as g, computed as I, effectScope as P, onScopeDispose as j, shallowReadonly as y, readonly as E, watch as h, isReactive as x } from "vue";
|
|
3
|
+
function H(i) {
|
|
4
|
+
function r(o) {
|
|
5
|
+
let a = "0", t = [];
|
|
6
|
+
const s = [];
|
|
7
|
+
function e(c, l, p, u) {
|
|
8
|
+
const f = S(a);
|
|
9
|
+
a = f, t.push({
|
|
10
10
|
version: f,
|
|
11
|
-
data:
|
|
11
|
+
data: c,
|
|
12
12
|
resolve: l,
|
|
13
|
-
reject:
|
|
13
|
+
reject: p,
|
|
14
14
|
timerId: u
|
|
15
15
|
}), n();
|
|
16
16
|
}
|
|
17
17
|
function n() {
|
|
18
|
-
if (!(t.length === 0 ||
|
|
19
|
-
for (const
|
|
20
|
-
const { version: l, data:
|
|
21
|
-
data:
|
|
18
|
+
if (!(t.length === 0 || s.length === 0))
|
|
19
|
+
for (const c of t) {
|
|
20
|
+
const { version: l, data: p, resolve: u, reject: f, timerId: _ } = c, v = {
|
|
21
|
+
data: p,
|
|
22
22
|
version: l
|
|
23
23
|
};
|
|
24
|
-
for (const d of
|
|
24
|
+
for (const d of s)
|
|
25
25
|
try {
|
|
26
|
-
const
|
|
27
|
-
|
|
28
|
-
} catch (
|
|
29
|
-
if (
|
|
30
|
-
|
|
26
|
+
const m = d(v);
|
|
27
|
+
o.onReply(m), u(m), _ && clearTimeout(_);
|
|
28
|
+
} catch (m) {
|
|
29
|
+
if (o.onError && m instanceof Error)
|
|
30
|
+
o.onError(m), o.isTerminateOnError && (f(m), _ && clearTimeout(_));
|
|
31
31
|
else
|
|
32
|
-
throw new Error("caught a unknown error" + (
|
|
32
|
+
throw new Error("caught a unknown error" + (m?.toString() || m));
|
|
33
33
|
}
|
|
34
34
|
t.shift();
|
|
35
35
|
}
|
|
36
36
|
}
|
|
37
37
|
return {
|
|
38
|
-
listeners:
|
|
39
|
-
async publishRequest(
|
|
40
|
-
const l = new
|
|
41
|
-
let
|
|
42
|
-
return
|
|
43
|
-
l.reject(new Error(`timeout: ${
|
|
44
|
-
},
|
|
38
|
+
listeners: s,
|
|
39
|
+
async publishRequest(c) {
|
|
40
|
+
const l = new z.Deferred();
|
|
41
|
+
let p;
|
|
42
|
+
return o.timeoutMs && (p = setTimeout(() => {
|
|
43
|
+
l.reject(new Error(`timeout: ${o.timeoutMs} ms`));
|
|
44
|
+
}, o.timeoutMs)), e(c, l.resolve, l.reject, p), await l.promise;
|
|
45
45
|
},
|
|
46
46
|
api: {
|
|
47
47
|
get latestVersion() {
|
|
48
|
-
return
|
|
48
|
+
return a;
|
|
49
49
|
},
|
|
50
|
-
listenAndReply(
|
|
51
|
-
if (
|
|
52
|
-
throw new Error("too many listeners. max limit: " +
|
|
53
|
-
return
|
|
54
|
-
const l =
|
|
55
|
-
l !== -1 &&
|
|
50
|
+
listenAndReply(c) {
|
|
51
|
+
if (o.maxListenerCount && s.length >= o.maxListenerCount)
|
|
52
|
+
throw new Error("too many listeners. max limit: " + o.maxListenerCount);
|
|
53
|
+
return s.push(c), n(), () => {
|
|
54
|
+
const l = s.indexOf(c);
|
|
55
|
+
l !== -1 && s.splice(l, 1);
|
|
56
56
|
};
|
|
57
57
|
}
|
|
58
58
|
}
|
|
59
59
|
};
|
|
60
60
|
}
|
|
61
61
|
return {
|
|
62
|
-
options:
|
|
62
|
+
options: r
|
|
63
63
|
};
|
|
64
64
|
}
|
|
65
|
-
function
|
|
66
|
-
let
|
|
67
|
-
const
|
|
65
|
+
function M(i) {
|
|
66
|
+
let r = "0";
|
|
67
|
+
const o = [];
|
|
68
68
|
return {
|
|
69
|
-
listeners:
|
|
70
|
-
publish(
|
|
69
|
+
listeners: o,
|
|
70
|
+
publish(a) {
|
|
71
71
|
const t = {
|
|
72
|
-
data:
|
|
73
|
-
version:
|
|
72
|
+
data: a,
|
|
73
|
+
version: S(r)
|
|
74
74
|
};
|
|
75
|
-
|
|
76
|
-
for (const
|
|
77
|
-
|
|
75
|
+
r = t.version;
|
|
76
|
+
for (const s of o)
|
|
77
|
+
s(t);
|
|
78
78
|
},
|
|
79
79
|
api: {
|
|
80
80
|
get latestVersion() {
|
|
81
|
-
return
|
|
81
|
+
return r;
|
|
82
82
|
},
|
|
83
|
-
listen(
|
|
84
|
-
return
|
|
85
|
-
const t =
|
|
86
|
-
t >= 0 &&
|
|
83
|
+
listen(a) {
|
|
84
|
+
return o.push(a), () => {
|
|
85
|
+
const t = o.indexOf(a);
|
|
86
|
+
t >= 0 && o.splice(t, 1);
|
|
87
87
|
};
|
|
88
88
|
}
|
|
89
89
|
}
|
|
90
90
|
};
|
|
91
91
|
}
|
|
92
|
-
function
|
|
92
|
+
function S(i) {
|
|
93
93
|
if (+i < Number.MAX_SAFE_INTEGER)
|
|
94
94
|
return (parseInt(i) + 1).toString();
|
|
95
|
-
let
|
|
96
|
-
const
|
|
97
|
-
let t = 0,
|
|
98
|
-
for (let e = 0; e <
|
|
99
|
-
const n = e <
|
|
100
|
-
|
|
95
|
+
let r = i.split("").reverse().join(""), o = "1";
|
|
96
|
+
const a = Math.max(r.length, o.length);
|
|
97
|
+
let t = 0, s = [];
|
|
98
|
+
for (let e = 0; e < a; e++) {
|
|
99
|
+
const n = e < r.length ? parseInt(r[e], 10) : 0, c = e < o.length ? parseInt(o[e], 10) : 0, l = n + c + t;
|
|
100
|
+
s.push(l % 10), t = Math.floor(l / 10);
|
|
101
101
|
}
|
|
102
|
-
return t > 0 &&
|
|
102
|
+
return t > 0 && s.push(t), s.reverse().join("");
|
|
103
103
|
}
|
|
104
|
-
function
|
|
105
|
-
const
|
|
106
|
-
return `${i}${
|
|
104
|
+
function w(i = "") {
|
|
105
|
+
const r = Date.now().toString(36), o = Math.random().toString(36).substring(2, 10);
|
|
106
|
+
return `${i}${r}${o}`;
|
|
107
107
|
}
|
|
108
|
-
const
|
|
108
|
+
const V = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
109
109
|
__proto__: null,
|
|
110
|
-
genId:
|
|
110
|
+
genId: w
|
|
111
111
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
112
|
-
function
|
|
113
|
-
const
|
|
112
|
+
function A(i) {
|
|
113
|
+
const r = {}, o = {}, a = /* @__PURE__ */ new WeakMap(), t = {}, s = [];
|
|
114
114
|
return Object.freeze({
|
|
115
115
|
registerAgg(e) {
|
|
116
116
|
if (e.isInitialized.value)
|
|
@@ -121,42 +121,42 @@ function S(i) {
|
|
|
121
121
|
delete t[e.__id];
|
|
122
122
|
}), t[e.__id] = e;
|
|
123
123
|
const n = [];
|
|
124
|
-
for (const
|
|
125
|
-
|
|
124
|
+
for (const c of Object.values(r))
|
|
125
|
+
c.mount({
|
|
126
126
|
api: e.api,
|
|
127
127
|
__aggId: e.__id,
|
|
128
128
|
isInitialized: e.isInitialized
|
|
129
129
|
});
|
|
130
|
-
for (const
|
|
131
|
-
|
|
132
|
-
if (
|
|
133
|
-
const
|
|
130
|
+
for (const c of Object.values(o))
|
|
131
|
+
c.mount({ api: e.api, __aggId: e.__id }), n.push(c.__id);
|
|
132
|
+
if (a.set(e, n), O(e)) {
|
|
133
|
+
const c = e.api.events.destroyed.listen(() => {
|
|
134
134
|
delete t[e.__id], i?.(e);
|
|
135
|
-
for (const l of
|
|
135
|
+
for (const l of s)
|
|
136
136
|
l(e);
|
|
137
|
-
|
|
137
|
+
c?.();
|
|
138
138
|
});
|
|
139
139
|
}
|
|
140
140
|
},
|
|
141
141
|
onDestroy(e) {
|
|
142
|
-
|
|
142
|
+
s.push(e);
|
|
143
143
|
},
|
|
144
144
|
createSetupPlugin(e) {
|
|
145
145
|
let n;
|
|
146
146
|
return e instanceof Function ? n = e() : n = e, Object.freeze({
|
|
147
|
-
__id:
|
|
147
|
+
__id: w(),
|
|
148
148
|
type: "Setup",
|
|
149
|
-
mount(
|
|
150
|
-
if (
|
|
149
|
+
mount(c) {
|
|
150
|
+
if (c.isInitialized.value)
|
|
151
151
|
throw new Error("Can not setup after initialized");
|
|
152
|
-
n.mount({ api:
|
|
152
|
+
n.mount({ api: c.api, __aggId: c.__aggId });
|
|
153
153
|
}
|
|
154
154
|
});
|
|
155
155
|
},
|
|
156
156
|
createHotSwapPlugin(e) {
|
|
157
157
|
let n;
|
|
158
158
|
return e instanceof Function ? n = e() : n = e, Object.freeze({
|
|
159
|
-
__id:
|
|
159
|
+
__id: w(),
|
|
160
160
|
type: "HotSwap",
|
|
161
161
|
mount: n.mount,
|
|
162
162
|
unmount: n.unmount
|
|
@@ -164,9 +164,9 @@ function S(i) {
|
|
|
164
164
|
},
|
|
165
165
|
registerPlugin(e) {
|
|
166
166
|
if (e.type === "Setup") {
|
|
167
|
-
if (
|
|
167
|
+
if (r[e.__id])
|
|
168
168
|
throw new Error("Plugin already registered");
|
|
169
|
-
|
|
169
|
+
r[e.__id] = e;
|
|
170
170
|
for (const n in t)
|
|
171
171
|
e.mount({
|
|
172
172
|
api: t[n].api,
|
|
@@ -174,12 +174,12 @@ function S(i) {
|
|
|
174
174
|
isInitialized: t[n].isInitialized
|
|
175
175
|
});
|
|
176
176
|
} else if (e.type === "HotSwap") {
|
|
177
|
-
|
|
177
|
+
o[e.__id] = e;
|
|
178
178
|
for (const n in t)
|
|
179
|
-
|
|
179
|
+
a.has(t[n]) && !a.get(t[n]).includes(e.__id) && (e.mount({
|
|
180
180
|
api: t[n].api,
|
|
181
181
|
__aggId: t[n].__id
|
|
182
|
-
}),
|
|
182
|
+
}), a.get(t[n]).push(e.__id));
|
|
183
183
|
} else
|
|
184
184
|
isNever(e);
|
|
185
185
|
},
|
|
@@ -188,105 +188,105 @@ function S(i) {
|
|
|
188
188
|
throw new Error("Can not unregister setup plugin");
|
|
189
189
|
if (e.type === "HotSwap") {
|
|
190
190
|
for (const n in t)
|
|
191
|
-
|
|
191
|
+
a.has(t[n]) && a.get(t[n]).includes(e.__id) && e.unmount({
|
|
192
192
|
api: t[n].api,
|
|
193
193
|
__aggId: t[n].__id
|
|
194
194
|
});
|
|
195
|
-
delete
|
|
195
|
+
delete o[e.__id];
|
|
196
196
|
} else
|
|
197
197
|
isNever(e);
|
|
198
198
|
}
|
|
199
199
|
});
|
|
200
200
|
}
|
|
201
|
-
function
|
|
202
|
-
return
|
|
201
|
+
function $(i, r) {
|
|
202
|
+
return A(r);
|
|
203
203
|
}
|
|
204
|
-
function
|
|
205
|
-
return
|
|
204
|
+
function N(i) {
|
|
205
|
+
return A();
|
|
206
206
|
}
|
|
207
|
-
function
|
|
207
|
+
function O(i) {
|
|
208
208
|
return i.type === "MultiInstance";
|
|
209
209
|
}
|
|
210
|
-
function
|
|
211
|
-
return
|
|
210
|
+
function T(i) {
|
|
211
|
+
return b(i);
|
|
212
212
|
}
|
|
213
|
-
function
|
|
214
|
-
const
|
|
215
|
-
return
|
|
216
|
-
states:
|
|
217
|
-
commands:
|
|
218
|
-
events:
|
|
213
|
+
function C(i) {
|
|
214
|
+
const r = b(i);
|
|
215
|
+
return y({
|
|
216
|
+
states: r.states,
|
|
217
|
+
commands: r.commands,
|
|
218
|
+
events: r.events
|
|
219
219
|
});
|
|
220
220
|
}
|
|
221
|
-
function
|
|
222
|
-
const
|
|
221
|
+
function b(i) {
|
|
222
|
+
const r = i.states;
|
|
223
223
|
for (const e of Object.keys(i.states))
|
|
224
|
-
|
|
225
|
-
const
|
|
224
|
+
r[e] = E(r[e]);
|
|
225
|
+
const o = y(i.states), a = E(i.commands), t = {}, s = i.events;
|
|
226
226
|
for (const e in i.events)
|
|
227
|
-
t[e] =
|
|
228
|
-
return
|
|
229
|
-
states:
|
|
230
|
-
commands:
|
|
231
|
-
events:
|
|
227
|
+
t[e] = s[e].api;
|
|
228
|
+
return y({
|
|
229
|
+
states: o,
|
|
230
|
+
commands: a,
|
|
231
|
+
events: y(t),
|
|
232
232
|
destroy: i.destroy
|
|
233
233
|
});
|
|
234
234
|
}
|
|
235
|
-
function
|
|
235
|
+
function B(i, r) {
|
|
236
236
|
const {
|
|
237
|
-
resolve:
|
|
238
|
-
reject:
|
|
237
|
+
resolve: o,
|
|
238
|
+
reject: a,
|
|
239
239
|
promise: t
|
|
240
|
-
} = new
|
|
241
|
-
let
|
|
240
|
+
} = new z.Deferred();
|
|
241
|
+
let s = g(!1);
|
|
242
242
|
function e(d) {
|
|
243
|
-
if (
|
|
243
|
+
if (s.value === !0)
|
|
244
244
|
throw new Error("Agg already initialized");
|
|
245
245
|
n.push(d());
|
|
246
246
|
}
|
|
247
247
|
const n = [];
|
|
248
248
|
setTimeout(
|
|
249
249
|
() => Promise.all(n).then(() => {
|
|
250
|
-
|
|
250
|
+
o(), s.value = !0;
|
|
251
251
|
}).catch((d) => {
|
|
252
|
-
throw
|
|
252
|
+
throw a(d), d;
|
|
253
253
|
})
|
|
254
254
|
);
|
|
255
|
-
const
|
|
256
|
-
() =>
|
|
255
|
+
const c = P(), l = c.run(
|
|
256
|
+
() => r({
|
|
257
257
|
getCurrentScope() {
|
|
258
|
-
return
|
|
258
|
+
return c;
|
|
259
259
|
},
|
|
260
|
-
onScopeDispose:
|
|
260
|
+
onScopeDispose: j,
|
|
261
261
|
onCreated(d) {
|
|
262
262
|
Promise.resolve().then(d);
|
|
263
263
|
},
|
|
264
264
|
onBeforeInitialize: e,
|
|
265
|
-
isInitialized:
|
|
265
|
+
isInitialized: I(() => s.value),
|
|
266
266
|
untilInitialized: t
|
|
267
267
|
})
|
|
268
|
-
),
|
|
268
|
+
), p = l.states || {}, u = l.commands || {}, f = l.events || {};
|
|
269
269
|
let _;
|
|
270
|
-
f.destroyed ? _ = f.destroyed : (_ =
|
|
271
|
-
let
|
|
272
|
-
return
|
|
270
|
+
f.destroyed ? _ = f.destroyed : (_ = M(), f.destroyed = _);
|
|
271
|
+
let v = l.destroy;
|
|
272
|
+
return v || (v = () => {
|
|
273
273
|
_?.publish({});
|
|
274
274
|
for (const d in f) {
|
|
275
|
-
const
|
|
276
|
-
|
|
275
|
+
const m = f[d];
|
|
276
|
+
m.listeners.length = 0;
|
|
277
277
|
}
|
|
278
|
-
|
|
279
|
-
}),
|
|
280
|
-
__id:
|
|
278
|
+
c.stop();
|
|
279
|
+
}), y({
|
|
280
|
+
__id: w(),
|
|
281
281
|
type: "MultiInstance",
|
|
282
282
|
id: i,
|
|
283
|
-
api:
|
|
284
|
-
states:
|
|
283
|
+
api: T({
|
|
284
|
+
states: p,
|
|
285
285
|
commands: u,
|
|
286
286
|
events: f,
|
|
287
|
-
destroy:
|
|
287
|
+
destroy: v
|
|
288
288
|
}),
|
|
289
|
-
isInitialized:
|
|
289
|
+
isInitialized: I(() => s.value),
|
|
290
290
|
async untilInitialized() {
|
|
291
291
|
return await t.catch((d) => {
|
|
292
292
|
throw new Error(`Failed to initialize Agg: ${d.message}
|
|
@@ -295,14 +295,14 @@ Stack : ${d.stack || "unkown"}`);
|
|
|
295
295
|
}
|
|
296
296
|
});
|
|
297
297
|
}
|
|
298
|
-
function
|
|
298
|
+
function F(i) {
|
|
299
299
|
const {
|
|
300
|
-
resolve:
|
|
301
|
-
reject:
|
|
302
|
-
promise:
|
|
303
|
-
} = new
|
|
304
|
-
let t =
|
|
305
|
-
function
|
|
300
|
+
resolve: r,
|
|
301
|
+
reject: o,
|
|
302
|
+
promise: a
|
|
303
|
+
} = new z.Deferred();
|
|
304
|
+
let t = g(!1);
|
|
305
|
+
function s(u) {
|
|
306
306
|
if (t.value === !0)
|
|
307
307
|
throw new Error("Agg already initialized");
|
|
308
308
|
e.push(u());
|
|
@@ -311,45 +311,81 @@ function B(i) {
|
|
|
311
311
|
onCreated(u) {
|
|
312
312
|
Promise.resolve().then(u);
|
|
313
313
|
},
|
|
314
|
-
onBeforeInitialize:
|
|
315
|
-
isInitialized:
|
|
316
|
-
untilInitialized:
|
|
314
|
+
onBeforeInitialize: s,
|
|
315
|
+
isInitialized: I(() => t.value),
|
|
316
|
+
untilInitialized: a
|
|
317
317
|
});
|
|
318
318
|
setTimeout(
|
|
319
319
|
() => Promise.all(e).then(() => {
|
|
320
|
-
|
|
320
|
+
r(), t.value = !0;
|
|
321
321
|
}).catch((u) => {
|
|
322
|
-
|
|
322
|
+
o(u);
|
|
323
323
|
}),
|
|
324
324
|
0
|
|
325
325
|
);
|
|
326
|
-
const
|
|
326
|
+
const c = n.states || {}, l = n.commands || {}, p = n.events || {};
|
|
327
327
|
return {
|
|
328
|
-
__id:
|
|
328
|
+
__id: w(),
|
|
329
329
|
type: "Singleton",
|
|
330
|
-
api:
|
|
331
|
-
states:
|
|
330
|
+
api: C({
|
|
331
|
+
states: c,
|
|
332
332
|
commands: l,
|
|
333
|
-
events:
|
|
333
|
+
events: p,
|
|
334
334
|
destroy: () => {
|
|
335
335
|
}
|
|
336
336
|
}),
|
|
337
|
-
isInitialized:
|
|
337
|
+
isInitialized: I(() => t.value),
|
|
338
338
|
async untilInitialized() {
|
|
339
|
-
return await
|
|
339
|
+
return await a.catch((u) => {
|
|
340
340
|
throw new Error(`Failed to initialize Agg: ${u.message}
|
|
341
341
|
Stack : ${u.stack || "unkown"}`);
|
|
342
342
|
});
|
|
343
343
|
}
|
|
344
344
|
};
|
|
345
345
|
}
|
|
346
|
+
function L(i, r, o = !1) {
|
|
347
|
+
const a = g(k(i));
|
|
348
|
+
if (!o)
|
|
349
|
+
return h(a, r, { deep: !0 }), a;
|
|
350
|
+
let t;
|
|
351
|
+
return h(i, (s) => {
|
|
352
|
+
a.value = s, t = s;
|
|
353
|
+
}), h(a, (s, e, n) => {
|
|
354
|
+
s !== t && r(s, e, n);
|
|
355
|
+
}), a;
|
|
356
|
+
}
|
|
357
|
+
function q(i, r, o = !1) {
|
|
358
|
+
const a = g(k(i));
|
|
359
|
+
if (!o)
|
|
360
|
+
return h(a, r, { deep: !0 }), a;
|
|
361
|
+
let t;
|
|
362
|
+
return h(
|
|
363
|
+
i,
|
|
364
|
+
(s) => {
|
|
365
|
+
t = s, a.value = s;
|
|
366
|
+
},
|
|
367
|
+
{ deep: !0 }
|
|
368
|
+
), h(
|
|
369
|
+
a,
|
|
370
|
+
(s, e, n) => {
|
|
371
|
+
s !== t && r(s, e, n);
|
|
372
|
+
},
|
|
373
|
+
{ deep: !0 }
|
|
374
|
+
), a;
|
|
375
|
+
}
|
|
376
|
+
function k(i) {
|
|
377
|
+
let r;
|
|
378
|
+
return x(i) ? r = i : r = i.value, typeof r == "object" && (r = JSON.parse(JSON.stringify(r))), r;
|
|
379
|
+
}
|
|
346
380
|
export {
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
381
|
+
V as Utils,
|
|
382
|
+
q as bindDeepRef,
|
|
383
|
+
L as bindRef,
|
|
384
|
+
M as createBroadcastEvent,
|
|
385
|
+
B as createMultiInstanceAgg,
|
|
386
|
+
N as createPluginHelperByAgg,
|
|
387
|
+
$ as createPluginHelperByAggCreator,
|
|
388
|
+
H as createRequestEvent,
|
|
389
|
+
F as createSingletonAgg
|
|
354
390
|
};
|
|
355
391
|
//# sourceMappingURL=index.mjs.map
|