mol_jsx_lib 0.0.1102 → 0.0.1103
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/node.d.ts +161 -153
- package/node.d.ts.map +1 -1
- package/node.deps.json +1 -1
- package/node.js +883 -865
- package/node.js.map +1 -1
- package/node.mjs +883 -865
- package/node.test.js +1206 -1162
- package/node.test.js.map +1 -1
- package/package.json +14 -14
package/node.d.ts
CHANGED
|
@@ -59,27 +59,6 @@ declare namespace $ {
|
|
|
59
59
|
}
|
|
60
60
|
}
|
|
61
61
|
|
|
62
|
-
declare namespace $ {
|
|
63
|
-
type $mol_log3_event<Fields> = {
|
|
64
|
-
[key in string]: unknown;
|
|
65
|
-
} & {
|
|
66
|
-
time?: string;
|
|
67
|
-
place: unknown;
|
|
68
|
-
message: string;
|
|
69
|
-
} & Fields;
|
|
70
|
-
type $mol_log3_logger<Fields, Res = void> = (this: $, event: $mol_log3_event<Fields>) => Res;
|
|
71
|
-
let $mol_log3_come: $mol_log3_logger<{}>;
|
|
72
|
-
let $mol_log3_done: $mol_log3_logger<{}>;
|
|
73
|
-
let $mol_log3_fail: $mol_log3_logger<{}>;
|
|
74
|
-
let $mol_log3_warn: $mol_log3_logger<{
|
|
75
|
-
hint: string;
|
|
76
|
-
}>;
|
|
77
|
-
let $mol_log3_rise: $mol_log3_logger<{}>;
|
|
78
|
-
let $mol_log3_area: $mol_log3_logger<{}, () => void>;
|
|
79
|
-
function $mol_log3_area_lazy(this: $, event: $mol_log3_event<{}>): () => void;
|
|
80
|
-
let $mol_log3_stack: (() => void)[];
|
|
81
|
-
}
|
|
82
|
-
|
|
83
62
|
declare namespace $ {
|
|
84
63
|
const $mol_ambient_ref: unique symbol;
|
|
85
64
|
type $mol_ambient_context = $;
|
|
@@ -128,121 +107,13 @@ declare namespace $ {
|
|
|
128
107
|
}
|
|
129
108
|
|
|
130
109
|
declare namespace $ {
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
readonly col: number;
|
|
136
|
-
readonly length: number;
|
|
137
|
-
constructor(uri: string, source: string, row: number, col: number, length: number);
|
|
138
|
-
static unknown: $mol_span;
|
|
139
|
-
static begin(uri: string, source?: string): $mol_span;
|
|
140
|
-
static end(uri: string, source: string): $mol_span;
|
|
141
|
-
static entire(uri: string, source: string): $mol_span;
|
|
142
|
-
toString(): string;
|
|
143
|
-
toJSON(): {
|
|
144
|
-
uri: string;
|
|
145
|
-
row: number;
|
|
146
|
-
col: number;
|
|
147
|
-
length: number;
|
|
148
|
-
};
|
|
149
|
-
error(message: string, Class?: ErrorConstructor): Error;
|
|
150
|
-
span(row: number, col: number, length: number): $mol_span;
|
|
151
|
-
after(length?: number): $mol_span;
|
|
152
|
-
slice(begin: number, end?: number): $mol_span;
|
|
153
|
-
}
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
declare namespace $ {
|
|
157
|
-
function $mol_tree2_to_string(this: $, tree: $mol_tree2): string;
|
|
158
|
-
}
|
|
159
|
-
|
|
160
|
-
declare namespace $ {
|
|
161
|
-
type $mol_tree2_path = Array<string | number | null>;
|
|
162
|
-
type $mol_tree2_hack<Context> = (input: $mol_tree2, belt: $mol_tree2_belt<Context>, context: Context) => readonly $mol_tree2[];
|
|
163
|
-
type $mol_tree2_belt<Context> = Record<string, $mol_tree2_hack<Context>>;
|
|
164
|
-
class $mol_tree2 extends Object {
|
|
165
|
-
readonly type: string;
|
|
166
|
-
readonly value: string;
|
|
167
|
-
readonly kids: readonly $mol_tree2[];
|
|
168
|
-
readonly span: $mol_span;
|
|
169
|
-
constructor(type: string, value: string, kids: readonly $mol_tree2[], span: $mol_span);
|
|
170
|
-
static list(kids: readonly $mol_tree2[], span?: $mol_span): $mol_tree2;
|
|
171
|
-
list(kids: readonly $mol_tree2[]): $mol_tree2;
|
|
172
|
-
static data(value: string, kids?: readonly $mol_tree2[], span?: $mol_span): $mol_tree2;
|
|
173
|
-
data(value: string, kids?: readonly $mol_tree2[]): $mol_tree2;
|
|
174
|
-
static struct(type: string, kids?: readonly $mol_tree2[], span?: $mol_span): $mol_tree2;
|
|
175
|
-
struct(type: string, kids?: readonly $mol_tree2[]): $mol_tree2;
|
|
176
|
-
clone(kids: readonly $mol_tree2[], span?: $mol_span): $mol_tree2;
|
|
177
|
-
text(): string;
|
|
178
|
-
static fromString(str: string, uri?: string): $mol_tree2;
|
|
179
|
-
toString(): string;
|
|
180
|
-
insert(value: $mol_tree2 | null, ...path: $mol_tree2_path): $mol_tree2;
|
|
181
|
-
select(...path: $mol_tree2_path): $mol_tree2;
|
|
182
|
-
filter(path: string[], value?: string): $mol_tree2;
|
|
183
|
-
hack_self<Context extends {
|
|
184
|
-
span?: $mol_span;
|
|
185
|
-
[key: string]: unknown;
|
|
186
|
-
} = {}>(belt: $mol_tree2_belt<Context>, context?: Context): readonly $mol_tree2[];
|
|
187
|
-
hack<Context extends {
|
|
188
|
-
span?: $mol_span;
|
|
189
|
-
[key: string]: unknown;
|
|
190
|
-
} = {}>(belt: $mol_tree2_belt<Context>, context?: Context): $mol_tree2[];
|
|
191
|
-
error(message: string, Class?: ErrorConstructor): Error;
|
|
192
|
-
}
|
|
193
|
-
class $mol_tree2_empty extends $mol_tree2 {
|
|
194
|
-
constructor();
|
|
195
|
-
}
|
|
196
|
-
}
|
|
197
|
-
|
|
198
|
-
declare namespace $ {
|
|
199
|
-
class $mol_error_syntax extends SyntaxError {
|
|
200
|
-
reason: string;
|
|
201
|
-
line: string;
|
|
202
|
-
span: $mol_span;
|
|
203
|
-
constructor(reason: string, line: string, span: $mol_span);
|
|
204
|
-
}
|
|
205
|
-
}
|
|
206
|
-
|
|
207
|
-
declare namespace $ {
|
|
208
|
-
function $mol_tree2_from_string(this: $, str: string, uri?: string): $mol_tree2;
|
|
209
|
-
}
|
|
210
|
-
|
|
211
|
-
declare namespace $ {
|
|
212
|
-
function $mol_tree2_from_json(json: any, span?: $mol_span): $mol_tree2;
|
|
213
|
-
}
|
|
214
|
-
|
|
215
|
-
declare namespace $ {
|
|
216
|
-
class $mol_term_color {
|
|
217
|
-
static reset: (str: string) => string;
|
|
218
|
-
static bold: (str: string) => string;
|
|
219
|
-
static italic: (str: string) => string;
|
|
220
|
-
static underline: (str: string) => string;
|
|
221
|
-
static inverse: (str: string) => string;
|
|
222
|
-
static hidden: (str: string) => string;
|
|
223
|
-
static strike: (str: string) => string;
|
|
224
|
-
static gray: (str: string) => string;
|
|
225
|
-
static red: (str: string) => string;
|
|
226
|
-
static green: (str: string) => string;
|
|
227
|
-
static yellow: (str: string) => string;
|
|
228
|
-
static blue: (str: string) => string;
|
|
229
|
-
static magenta: (str: string) => string;
|
|
230
|
-
static cyan: (str: string) => string;
|
|
231
|
-
static Gray: (str: string) => string;
|
|
232
|
-
static Red: (str: string) => string;
|
|
233
|
-
static Green: (str: string) => string;
|
|
234
|
-
static Yellow: (str: string) => string;
|
|
235
|
-
static Blue: (str: string) => string;
|
|
236
|
-
static Magenta: (str: string) => string;
|
|
237
|
-
static Cyan: (str: string) => string;
|
|
238
|
-
static ansi(open: number, close: number): (str: string) => string;
|
|
110
|
+
namespace $$ { }
|
|
111
|
+
const $mol_object_field: unique symbol;
|
|
112
|
+
class $mol_object extends $mol_object2 {
|
|
113
|
+
static make<This extends typeof $mol_object>(this: This, config: Partial<InstanceType<This>>): InstanceType<This>;
|
|
239
114
|
}
|
|
240
115
|
}
|
|
241
116
|
|
|
242
|
-
declare namespace $ {
|
|
243
|
-
function $mol_log3_node_make(level: keyof Console, output: 'stdout' | 'stderr', type: string, color: (str: string) => string): (this: $, event: $mol_log3_event<{}>) => () => void;
|
|
244
|
-
}
|
|
245
|
-
|
|
246
117
|
declare namespace $ {
|
|
247
118
|
function $mol_env(): Record<string, string | undefined>;
|
|
248
119
|
}
|
|
@@ -400,6 +271,143 @@ declare namespace $ {
|
|
|
400
271
|
function $mol_compare_deep<Value>(left: Value, right: Value): boolean;
|
|
401
272
|
}
|
|
402
273
|
|
|
274
|
+
declare namespace $ {
|
|
275
|
+
type $mol_log3_event<Fields> = {
|
|
276
|
+
[key in string]: unknown;
|
|
277
|
+
} & {
|
|
278
|
+
time?: string;
|
|
279
|
+
place: unknown;
|
|
280
|
+
message: string;
|
|
281
|
+
} & Fields;
|
|
282
|
+
type $mol_log3_logger<Fields, Res = void> = (this: $, event: $mol_log3_event<Fields>) => Res;
|
|
283
|
+
let $mol_log3_come: $mol_log3_logger<{}>;
|
|
284
|
+
let $mol_log3_done: $mol_log3_logger<{}>;
|
|
285
|
+
let $mol_log3_fail: $mol_log3_logger<{}>;
|
|
286
|
+
let $mol_log3_warn: $mol_log3_logger<{
|
|
287
|
+
hint: string;
|
|
288
|
+
}>;
|
|
289
|
+
let $mol_log3_rise: $mol_log3_logger<{}>;
|
|
290
|
+
let $mol_log3_area: $mol_log3_logger<{}, () => void>;
|
|
291
|
+
function $mol_log3_area_lazy(this: $, event: $mol_log3_event<{}>): () => void;
|
|
292
|
+
let $mol_log3_stack: (() => void)[];
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
declare namespace $ {
|
|
296
|
+
class $mol_span extends $mol_object2 {
|
|
297
|
+
readonly uri: string;
|
|
298
|
+
readonly source: string;
|
|
299
|
+
readonly row: number;
|
|
300
|
+
readonly col: number;
|
|
301
|
+
readonly length: number;
|
|
302
|
+
constructor(uri: string, source: string, row: number, col: number, length: number);
|
|
303
|
+
static unknown: $mol_span;
|
|
304
|
+
static begin(uri: string, source?: string): $mol_span;
|
|
305
|
+
static end(uri: string, source: string): $mol_span;
|
|
306
|
+
static entire(uri: string, source: string): $mol_span;
|
|
307
|
+
toString(): string;
|
|
308
|
+
toJSON(): {
|
|
309
|
+
uri: string;
|
|
310
|
+
row: number;
|
|
311
|
+
col: number;
|
|
312
|
+
length: number;
|
|
313
|
+
};
|
|
314
|
+
error(message: string, Class?: ErrorConstructor): Error;
|
|
315
|
+
span(row: number, col: number, length: number): $mol_span;
|
|
316
|
+
after(length?: number): $mol_span;
|
|
317
|
+
slice(begin: number, end?: number): $mol_span;
|
|
318
|
+
}
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
declare namespace $ {
|
|
322
|
+
function $mol_tree2_to_string(this: $, tree: $mol_tree2): string;
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
declare namespace $ {
|
|
326
|
+
type $mol_tree2_path = Array<string | number | null>;
|
|
327
|
+
type $mol_tree2_hack<Context> = (input: $mol_tree2, belt: $mol_tree2_belt<Context>, context: Context) => readonly $mol_tree2[];
|
|
328
|
+
type $mol_tree2_belt<Context> = Record<string, $mol_tree2_hack<Context>>;
|
|
329
|
+
class $mol_tree2 extends Object {
|
|
330
|
+
readonly type: string;
|
|
331
|
+
readonly value: string;
|
|
332
|
+
readonly kids: readonly $mol_tree2[];
|
|
333
|
+
readonly span: $mol_span;
|
|
334
|
+
constructor(type: string, value: string, kids: readonly $mol_tree2[], span: $mol_span);
|
|
335
|
+
static list(kids: readonly $mol_tree2[], span?: $mol_span): $mol_tree2;
|
|
336
|
+
list(kids: readonly $mol_tree2[]): $mol_tree2;
|
|
337
|
+
static data(value: string, kids?: readonly $mol_tree2[], span?: $mol_span): $mol_tree2;
|
|
338
|
+
data(value: string, kids?: readonly $mol_tree2[]): $mol_tree2;
|
|
339
|
+
static struct(type: string, kids?: readonly $mol_tree2[], span?: $mol_span): $mol_tree2;
|
|
340
|
+
struct(type: string, kids?: readonly $mol_tree2[]): $mol_tree2;
|
|
341
|
+
clone(kids: readonly $mol_tree2[], span?: $mol_span): $mol_tree2;
|
|
342
|
+
text(): string;
|
|
343
|
+
static fromString(str: string, uri?: string): $mol_tree2;
|
|
344
|
+
toString(): string;
|
|
345
|
+
insert(value: $mol_tree2 | null, ...path: $mol_tree2_path): $mol_tree2;
|
|
346
|
+
select(...path: $mol_tree2_path): $mol_tree2;
|
|
347
|
+
filter(path: string[], value?: string): $mol_tree2;
|
|
348
|
+
hack_self<Context extends {
|
|
349
|
+
span?: $mol_span;
|
|
350
|
+
[key: string]: unknown;
|
|
351
|
+
} = {}>(belt: $mol_tree2_belt<Context>, context?: Context): readonly $mol_tree2[];
|
|
352
|
+
hack<Context extends {
|
|
353
|
+
span?: $mol_span;
|
|
354
|
+
[key: string]: unknown;
|
|
355
|
+
} = {}>(belt: $mol_tree2_belt<Context>, context?: Context): $mol_tree2[];
|
|
356
|
+
error(message: string, Class?: ErrorConstructor): Error;
|
|
357
|
+
}
|
|
358
|
+
class $mol_tree2_empty extends $mol_tree2 {
|
|
359
|
+
constructor();
|
|
360
|
+
}
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
declare namespace $ {
|
|
364
|
+
class $mol_error_syntax extends SyntaxError {
|
|
365
|
+
reason: string;
|
|
366
|
+
line: string;
|
|
367
|
+
span: $mol_span;
|
|
368
|
+
constructor(reason: string, line: string, span: $mol_span);
|
|
369
|
+
}
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
declare namespace $ {
|
|
373
|
+
function $mol_tree2_from_string(this: $, str: string, uri?: string): $mol_tree2;
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
declare namespace $ {
|
|
377
|
+
function $mol_tree2_from_json(json: any, span?: $mol_span): $mol_tree2;
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
declare namespace $ {
|
|
381
|
+
class $mol_term_color {
|
|
382
|
+
static reset: (str: string) => string;
|
|
383
|
+
static bold: (str: string) => string;
|
|
384
|
+
static italic: (str: string) => string;
|
|
385
|
+
static underline: (str: string) => string;
|
|
386
|
+
static inverse: (str: string) => string;
|
|
387
|
+
static hidden: (str: string) => string;
|
|
388
|
+
static strike: (str: string) => string;
|
|
389
|
+
static gray: (str: string) => string;
|
|
390
|
+
static red: (str: string) => string;
|
|
391
|
+
static green: (str: string) => string;
|
|
392
|
+
static yellow: (str: string) => string;
|
|
393
|
+
static blue: (str: string) => string;
|
|
394
|
+
static magenta: (str: string) => string;
|
|
395
|
+
static cyan: (str: string) => string;
|
|
396
|
+
static Gray: (str: string) => string;
|
|
397
|
+
static Red: (str: string) => string;
|
|
398
|
+
static Green: (str: string) => string;
|
|
399
|
+
static Yellow: (str: string) => string;
|
|
400
|
+
static Blue: (str: string) => string;
|
|
401
|
+
static Magenta: (str: string) => string;
|
|
402
|
+
static Cyan: (str: string) => string;
|
|
403
|
+
static ansi(open: number, close: number): (str: string) => string;
|
|
404
|
+
}
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
declare namespace $ {
|
|
408
|
+
function $mol_log3_node_make(level: keyof Console, output: 'stdout' | 'stderr', type: string, color: (str: string) => string): (this: $, event: $mol_log3_event<{}>) => () => void;
|
|
409
|
+
}
|
|
410
|
+
|
|
403
411
|
declare namespace $ {
|
|
404
412
|
class $mol_wire_task<Host, Args extends readonly unknown[], Result> extends $mol_wire_fiber<Host, Args, Result> {
|
|
405
413
|
static getter<Host, Args extends readonly unknown[], Result>(task: (this: Host, ...args: Args) => Result): (host: Host, args: Args) => $mol_wire_task<Host, Args, Result>;
|
|
@@ -423,32 +431,40 @@ declare namespace $ {
|
|
|
423
431
|
declare namespace $ {
|
|
424
432
|
type $mol_run_error_context = {
|
|
425
433
|
pid?: number;
|
|
426
|
-
stdout: Buffer;
|
|
427
|
-
stderr: Buffer;
|
|
428
|
-
status?: number | null;
|
|
429
|
-
signal: NodeJS.Signals | null;
|
|
434
|
+
stdout: Buffer | string;
|
|
435
|
+
stderr: Buffer | string;
|
|
430
436
|
};
|
|
431
437
|
class $mol_run_error extends $mol_error_mix<{
|
|
432
|
-
|
|
438
|
+
timeout_kill?: boolean;
|
|
439
|
+
pid?: number;
|
|
433
440
|
signal?: NodeJS.Signals | null;
|
|
441
|
+
status?: number | null;
|
|
442
|
+
command: string;
|
|
443
|
+
dir: string;
|
|
434
444
|
}> {
|
|
435
445
|
}
|
|
436
|
-
const $mol_run_spawn:
|
|
437
|
-
const $mol_run_spawn_sync:
|
|
446
|
+
const $mol_run_spawn: (command: string, args: readonly string[], options: import("child_process").SpawnOptions) => import("child_process").ChildProcess;
|
|
447
|
+
const $mol_run_spawn_sync: (command: string, args?: readonly string[] | undefined, options?: import("child_process").SpawnSyncOptions | undefined) => import("child_process").SpawnSyncReturns<string | Buffer<ArrayBufferLike>>;
|
|
438
448
|
type $mol_run_options = {
|
|
439
449
|
command: readonly string[] | string;
|
|
440
450
|
dir: string;
|
|
441
451
|
timeout?: number;
|
|
442
452
|
env?: Record<string, string | undefined>;
|
|
443
453
|
};
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
454
|
+
class $mol_run extends $mol_object {
|
|
455
|
+
static async_enabled(): boolean;
|
|
456
|
+
static spawn(options: $mol_run_options): $mol_run_error_context | import("child_process").SpawnSyncReturns<string | Buffer<ArrayBufferLike>>;
|
|
457
|
+
static spawn_async({ dir, sync, timeout, command, env }: $mol_run_options & {
|
|
458
|
+
sync?: boolean;
|
|
459
|
+
}): import("child_process").SpawnSyncReturns<string | Buffer<ArrayBufferLike>> | (Promise<$mol_run_error_context> & {
|
|
460
|
+
destructor: () => void;
|
|
461
|
+
});
|
|
462
|
+
static error_message(res?: $mol_run_error_context): string;
|
|
463
|
+
}
|
|
448
464
|
}
|
|
449
465
|
|
|
450
466
|
declare namespace $ {
|
|
451
|
-
function $mol_exec(this: $, dir: string, command: string, ...args: readonly string[]): $mol_run_error_context | import("child_process").SpawnSyncReturns<Buffer<ArrayBufferLike>>;
|
|
467
|
+
function $mol_exec(this: $, dir: string, command: string, ...args: readonly string[]): $mol_run_error_context | import("child_process").SpawnSyncReturns<string | Buffer<ArrayBufferLike>>;
|
|
452
468
|
}
|
|
453
469
|
|
|
454
470
|
declare namespace $ {
|
|
@@ -639,14 +655,6 @@ declare namespace $ {
|
|
|
639
655
|
};
|
|
640
656
|
}
|
|
641
657
|
|
|
642
|
-
declare namespace $ {
|
|
643
|
-
namespace $$ { }
|
|
644
|
-
const $mol_object_field: unique symbol;
|
|
645
|
-
class $mol_object extends $mol_object2 {
|
|
646
|
-
static make<This extends typeof $mol_object>(this: This, config: Partial<InstanceType<This>>): InstanceType<This>;
|
|
647
|
-
}
|
|
648
|
-
}
|
|
649
|
-
|
|
650
658
|
declare namespace $ {
|
|
651
659
|
class $mol_state_time extends $mol_object {
|
|
652
660
|
static task(precision: number, reset?: null): $mol_after_timeout | $mol_after_frame;
|
package/node.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../mam.d.ts","../../../dom/context/context.d.ts","../../../fail/fail.d.ts","../../../promise/like/like.d.ts","../../../fail/hidden/hidden.d.ts","../../../fail/catch/catch.d.ts","../../../fail/log/log.d.ts","../../../../node/node.node.d.ts","../../../func/name/name.d.ts","../../../error/mix/mix.d.ts","../../../
|
|
1
|
+
{"version":3,"sources":["../../../../mam.d.ts","../../../dom/context/context.d.ts","../../../fail/fail.d.ts","../../../promise/like/like.d.ts","../../../fail/hidden/hidden.d.ts","../../../fail/catch/catch.d.ts","../../../fail/log/log.d.ts","../../../../node/node.node.d.ts","../../../func/name/name.d.ts","../../../error/mix/mix.d.ts","../../../ambient/ambient.d.ts","../../../delegate/delegate.d.ts","../../../owning/owning.d.ts","../../../type/writable/writable.d.ts","../../../object2/object2.d.ts","../../../object/object.d.ts","../../../env/env.d.ts","../../../env/env.node.d.ts","../../../wire/cursor/cursor.d.ts","../../../wire/pub/pub.d.ts","../../../wire/sub/sub.d.ts","../../../wire/wire.d.ts","../../../dev/format/format.d.ts","../../../wire/pub/sub/sub.d.ts","../../../after/tick/tick.d.ts","../../../wire/fiber/fiber.d.ts","../../../compare/deep/deep.d.ts","../../../log3/log3.d.ts","../../../span/span.d.ts","../../../tree2/to/string/string.d.ts","../../../tree2/tree2.d.ts","../../../error/syntax/syntax.d.ts","../../../tree2/from/string/string.d.ts","../../../tree2/from/json/json.d.ts","../../../term/color/color.d.ts","../../../log3/log3.node.d.ts","../../../wire/task/task.d.ts","../../../wire/sync/sync.d.ts","../../../run/run.node.d.ts","../../../exec/exec.node.d.ts","../../../dom/context/context.node.d.ts","../../../dom/render/children/children.d.ts","../../../type/partial/deep/deep.d.ts","../../jsx.d.ts","../../attach/attach.d.ts","../../../const/const.d.ts","../../../guid/guid.d.ts","../../../key/key.d.ts","../../../after/timeout/timeout.d.ts","../../../after/frame/frame.node.d.ts","../../../wire/method/method.d.ts","../../../type/tail/tail.d.ts","../../../type/foot/foot.d.ts","../../../wire/atom/atom.d.ts","../../../wire/field/field.d.ts","../../../wire/solo/solo.d.ts","../../../wire/plex/plex.d.ts","../../../mem/mem.d.ts","../../view/view.d.ts","../../../wire/probe/probe.d.ts","../../../wire/solid/solid.d.ts","../../../wire/watch/watch.d.ts","../../../wire/async/async.d.ts","../../../wire/race/race.d.ts","../../../state/time/time.d.ts","../../../wire/easing/easing.d.ts","../../../wire/patch/patch.d.ts","../../../type/result/result.d.ts","../../../wire/let/let.d.ts","../../../wire/set/set.d.ts","../../../wire/dict/dict.d.ts","../../../promise/promise/promise.d.ts","../../../wait/timeout/timeout.d.ts","../../../wire/log/log.d.ts"],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACdA;AACA;AACA;AACA;ACHA;AACA;AACA;AACA;ACHA;AACA;AACA;AACA;ACHA;AACA;AACA;AACA;ACHA;AACA;AACA;AACA;ACHA;AACA;AACA;AACA;ACHA;AACA;AACA;AACA;AACA;AACA;ACLA;AACA;AACA;AACA;AACA;ACJA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACVA;AACA;AACA;AACA;AACA;AACA;ACLA;AACA;AACA;AACA;ACHA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACbA;AACA;AACA;AACA;AACA;AACA;ACLA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AChBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACPA;AACA;AACA;AACA;ACHA;AACA;AACA;ACFA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACRA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACnBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACbA;AACA;AACA;AACA;AACA;AACA;ACLA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AC3BA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACpBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACTA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACpCA;AACA;AACA;AACA;AACA;ACJA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACpBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACzBA;AACA;AACA;AACA;ACHA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACrCA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACRA;AACA;AACA;AACA;ACHA;AACA;AACA;AACA;ACHA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AC1BA;AACA;AACA;AACA;ACHA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACRA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACVA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AClCA;AACA;AACA;AACA;ACHA;AACA;AACA;ACFA;AACA;AACA;AACA;ACHA;AACA;AACA;AACA;AACA;AACA;ACLA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AClCA;AACA;AACA;AACA;ACHA;AACA;AACA;AACA;AACA;AACA;AACA;ACNA;AACA;AACA;AACA;ACHA;AACA;AACA;AACA;AACA;ACJA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACTA;AACA;AACA;AACA;AACA;AACA;AACA;ACNA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACVA;AACA;AACA;AACA;ACHA;AACA;AACA;AACA;ACHA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACjBA;AACA;AACA;AACA;ACHA;AACA;AACA;AACA;AACA;AACA;ACLA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACVA;AACA;AACA;AACA;AACA;ACJA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACXA;AACA;AACA;AACA;ACHA;AACA;AACA;AACA;ACHA;AACA;AACA;AACA;ACHA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACTA;AACA;AACA;AACA;AACA;AACA;ACLA;AACA;AACA;AACA;AACA;AACA;AACA;ACNA;AACA;AACA;AACA;ACHA;AACA;AACA;AACA;ACHA;AACA;AACA;AACA;ACHA;AACA;AACA;AACA;AACA;AACA;ACLA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AChBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACjBA;AACA;AACA;AACA;AACA;AACA;AACA;ACNA;AACA;AACA;AACA;AACA;ACJA;AACA;AACA;AACA;AACA;AACA;AACA;AACA","sourcesContent":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]}
|