mol_jsx_lib 0.0.1597 → 0.0.1599
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 +201 -0
- package/node.d.ts.map +1 -1
- package/package.json +1 -1
- package/web.d.ts +602 -0
- package/web.d.ts.map +1 -1
package/node.d.ts
CHANGED
|
@@ -18,6 +18,10 @@ declare namespace $ {
|
|
|
18
18
|
var $mol_dom_context: typeof globalThis;
|
|
19
19
|
}
|
|
20
20
|
|
|
21
|
+
declare namespace $ {
|
|
22
|
+
function $node_internal_check(name: string): boolean;
|
|
23
|
+
}
|
|
24
|
+
|
|
21
25
|
declare namespace $ {
|
|
22
26
|
function $mol_promise_like(val: any): val is Promise<any>;
|
|
23
27
|
}
|
|
@@ -42,11 +46,31 @@ declare namespace $ {
|
|
|
42
46
|
function $mol_fail_log(error: unknown): boolean;
|
|
43
47
|
}
|
|
44
48
|
|
|
49
|
+
declare namespace $ {
|
|
50
|
+
function $node_autoinstall(this: typeof $, name: string): void;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
interface $node {
|
|
54
|
+
[key: string]: any;
|
|
55
|
+
}
|
|
56
|
+
declare var $node: $node;
|
|
57
|
+
|
|
45
58
|
declare namespace $ {
|
|
46
59
|
function $mol_func_name(this: $, func: Function): string;
|
|
47
60
|
function $mol_func_name_from<Target extends Function>(target: Target, source: Function): Target;
|
|
48
61
|
}
|
|
49
62
|
|
|
63
|
+
declare namespace $ {
|
|
64
|
+
class $mol_error_mix<Cause extends {} = {}> extends AggregateError {
|
|
65
|
+
readonly cause: Cause;
|
|
66
|
+
name: string;
|
|
67
|
+
constructor(message: string, cause?: Cause, ...errors: readonly Error[]);
|
|
68
|
+
static [Symbol.toPrimitive](): string;
|
|
69
|
+
static toString(): string;
|
|
70
|
+
static make(...params: ConstructorParameters<typeof $mol_error_mix>): $mol_error_mix<{}>;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
|
|
50
74
|
declare namespace $ {
|
|
51
75
|
const $mol_ambient_ref: unique symbol;
|
|
52
76
|
type $mol_ambient_context = $;
|
|
@@ -109,6 +133,13 @@ declare namespace $ {
|
|
|
109
133
|
}
|
|
110
134
|
}
|
|
111
135
|
|
|
136
|
+
declare namespace $ {
|
|
137
|
+
function $mol_env(): Record<string, string | undefined>;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
declare namespace $ {
|
|
141
|
+
}
|
|
142
|
+
|
|
112
143
|
declare namespace $ {
|
|
113
144
|
function $mol_guid(length?: number, exists?: (id: string) => boolean): string;
|
|
114
145
|
}
|
|
@@ -286,6 +317,131 @@ declare namespace $ {
|
|
|
286
317
|
let $mol_log3_stack: (() => void)[];
|
|
287
318
|
}
|
|
288
319
|
|
|
320
|
+
declare namespace $ {
|
|
321
|
+
class $mol_span extends $mol_object2 {
|
|
322
|
+
readonly uri: string;
|
|
323
|
+
readonly source: string;
|
|
324
|
+
readonly row: number;
|
|
325
|
+
readonly col: number;
|
|
326
|
+
readonly length: number;
|
|
327
|
+
constructor(uri: string, source: string, row: number, col: number, length: number);
|
|
328
|
+
static unknown: $mol_span;
|
|
329
|
+
static begin(uri: string, source?: string): $mol_span;
|
|
330
|
+
static end(uri: string, source: string): $mol_span;
|
|
331
|
+
static entire(uri: string, source: string): $mol_span;
|
|
332
|
+
toString(): string;
|
|
333
|
+
toJSON(): {
|
|
334
|
+
uri: string;
|
|
335
|
+
row: number;
|
|
336
|
+
col: number;
|
|
337
|
+
length: number;
|
|
338
|
+
};
|
|
339
|
+
error(message: string, Class?: ErrorConstructor): Error;
|
|
340
|
+
span(row: number, col: number, length: number): $mol_span;
|
|
341
|
+
after(length?: number): $mol_span;
|
|
342
|
+
slice(begin: number, end?: number): $mol_span;
|
|
343
|
+
}
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
declare namespace $ {
|
|
347
|
+
function $mol_tree2_to_string(this: $, tree: $mol_tree2): string;
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
declare namespace $ {
|
|
351
|
+
function $mol_maybe<Value>(value: Value | null | undefined): Value[];
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
declare namespace $ {
|
|
355
|
+
type $mol_tree2_path = Array<string | number | null>;
|
|
356
|
+
type $mol_tree2_hack<Context> = (input: $mol_tree2, belt: $mol_tree2_belt<Context>, context: Context) => readonly $mol_tree2[];
|
|
357
|
+
type $mol_tree2_belt<Context> = Record<string, $mol_tree2_hack<Context>>;
|
|
358
|
+
class $mol_tree2 extends Object {
|
|
359
|
+
readonly type: string;
|
|
360
|
+
readonly value: string;
|
|
361
|
+
readonly kids: readonly $mol_tree2[];
|
|
362
|
+
readonly span: $mol_span;
|
|
363
|
+
constructor(type: string, value: string, kids: readonly $mol_tree2[], span: $mol_span);
|
|
364
|
+
static list(kids: readonly $mol_tree2[], span?: $mol_span): $mol_tree2;
|
|
365
|
+
list(kids: readonly $mol_tree2[]): $mol_tree2;
|
|
366
|
+
static data(value: string, kids?: readonly $mol_tree2[], span?: $mol_span): $mol_tree2;
|
|
367
|
+
data(value: string, kids?: readonly $mol_tree2[]): $mol_tree2;
|
|
368
|
+
static struct(type: string, kids?: readonly $mol_tree2[], span?: $mol_span): $mol_tree2;
|
|
369
|
+
struct(type: string, kids?: readonly $mol_tree2[]): $mol_tree2;
|
|
370
|
+
clone(kids: readonly $mol_tree2[], span?: $mol_span): $mol_tree2;
|
|
371
|
+
text(): string;
|
|
372
|
+
static fromString(str: string, uri?: string): $mol_tree2;
|
|
373
|
+
toString(): string;
|
|
374
|
+
insert(value: $mol_tree2 | null, ...path: $mol_tree2_path): $mol_tree2;
|
|
375
|
+
update(value: readonly $mol_tree2[], ...path: $mol_tree2_path): readonly $mol_tree2[];
|
|
376
|
+
select(...path: $mol_tree2_path): $mol_tree2;
|
|
377
|
+
filter(path: string[], value?: string): $mol_tree2;
|
|
378
|
+
hack_self<Context extends {
|
|
379
|
+
span?: $mol_span;
|
|
380
|
+
[key: string]: unknown;
|
|
381
|
+
} = {}>(belt: $mol_tree2_belt<Context>, context?: Context): readonly $mol_tree2[];
|
|
382
|
+
hack<Context extends {
|
|
383
|
+
span?: $mol_span;
|
|
384
|
+
[key: string]: unknown;
|
|
385
|
+
} = {}>(belt: $mol_tree2_belt<Context>, context?: Context): $mol_tree2[];
|
|
386
|
+
error(message: string, Class?: ErrorConstructor): Error;
|
|
387
|
+
}
|
|
388
|
+
class $mol_tree2_empty extends $mol_tree2 {
|
|
389
|
+
constructor();
|
|
390
|
+
}
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
declare namespace $ {
|
|
394
|
+
class $mol_error_syntax extends SyntaxError {
|
|
395
|
+
reason: string;
|
|
396
|
+
line: string;
|
|
397
|
+
span: $mol_span;
|
|
398
|
+
constructor(reason: string, line: string, span: $mol_span);
|
|
399
|
+
}
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
declare namespace $ {
|
|
403
|
+
function $mol_tree2_from_string(this: $, str: string, uri?: string): $mol_tree2;
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
declare namespace $ {
|
|
407
|
+
function $mol_array_chunks<Item>(array: readonly Item[], rule: number | ((item: Item, index: number) => boolean)): Item[][];
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
declare namespace $ {
|
|
411
|
+
function $mol_tree2_from_json(json: any, span?: $mol_span): $mol_tree2;
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
declare namespace $ {
|
|
415
|
+
class $mol_term_color {
|
|
416
|
+
static reset: (str: string) => string;
|
|
417
|
+
static bold: (str: string) => string;
|
|
418
|
+
static italic: (str: string) => string;
|
|
419
|
+
static underline: (str: string) => string;
|
|
420
|
+
static inverse: (str: string) => string;
|
|
421
|
+
static hidden: (str: string) => string;
|
|
422
|
+
static strike: (str: string) => string;
|
|
423
|
+
static gray: (str: string) => string;
|
|
424
|
+
static red: (str: string) => string;
|
|
425
|
+
static green: (str: string) => string;
|
|
426
|
+
static yellow: (str: string) => string;
|
|
427
|
+
static blue: (str: string) => string;
|
|
428
|
+
static magenta: (str: string) => string;
|
|
429
|
+
static cyan: (str: string) => string;
|
|
430
|
+
static Gray: (str: string) => string;
|
|
431
|
+
static Red: (str: string) => string;
|
|
432
|
+
static Green: (str: string) => string;
|
|
433
|
+
static Yellow: (str: string) => string;
|
|
434
|
+
static Blue: (str: string) => string;
|
|
435
|
+
static Magenta: (str: string) => string;
|
|
436
|
+
static Cyan: (str: string) => string;
|
|
437
|
+
static ansi(open: number, close: number): (str: string) => string;
|
|
438
|
+
}
|
|
439
|
+
}
|
|
440
|
+
|
|
441
|
+
declare namespace $ {
|
|
442
|
+
function $mol_log3_node_make(level: keyof Console, output: 'stdout' | 'stderr', type: string, color: (str: string) => string): (this: $, event: $mol_log3_event<{}>) => () => void;
|
|
443
|
+
}
|
|
444
|
+
|
|
289
445
|
declare namespace $ {
|
|
290
446
|
class $mol_wire_task<Host, Args extends readonly unknown[], Result> extends $mol_wire_fiber<Host, Args, Result> {
|
|
291
447
|
static getter<Host, Args extends readonly unknown[], Result>(task: (this: Host, ...args: Args) => Result): (host: Host, args: Args) => $mol_wire_task<Host, Args, Result>;
|
|
@@ -307,6 +463,44 @@ declare namespace $ {
|
|
|
307
463
|
export {};
|
|
308
464
|
}
|
|
309
465
|
|
|
466
|
+
declare namespace $ {
|
|
467
|
+
type $mol_run_error_context = {
|
|
468
|
+
pid?: number;
|
|
469
|
+
stdout: Buffer | string;
|
|
470
|
+
stderr: Buffer | string;
|
|
471
|
+
};
|
|
472
|
+
class $mol_run_error extends $mol_error_mix<{
|
|
473
|
+
timeout_kill?: boolean;
|
|
474
|
+
pid?: number;
|
|
475
|
+
signal?: NodeJS.Signals | null;
|
|
476
|
+
status?: number | null;
|
|
477
|
+
command: string;
|
|
478
|
+
dir: string;
|
|
479
|
+
}> {
|
|
480
|
+
}
|
|
481
|
+
const $mol_run_spawn: (...args: Parameters<(typeof $node)["child_process"]["spawn"]>) => import("node:child_process").ChildProcess;
|
|
482
|
+
const $mol_run_spawn_sync: (...args: Parameters<(typeof $node)["child_process"]["spawnSync"]>) => import("node:child_process").SpawnSyncReturns<string | NonSharedBuffer>;
|
|
483
|
+
type $mol_run_options = {
|
|
484
|
+
command: readonly string[] | string;
|
|
485
|
+
dir: string;
|
|
486
|
+
timeout?: number;
|
|
487
|
+
env?: Record<string, string | undefined>;
|
|
488
|
+
};
|
|
489
|
+
class $mol_run extends $mol_object {
|
|
490
|
+
static async_enabled(): boolean;
|
|
491
|
+
static spawn(options: $mol_run_options): import("node:child_process").SpawnSyncReturns<string | NonSharedBuffer> | $mol_run_error_context;
|
|
492
|
+
static spawn_async({ dir, sync, timeout, command, env }: $mol_run_options & {
|
|
493
|
+
sync?: boolean;
|
|
494
|
+
}): import("node:child_process").SpawnSyncReturns<string | NonSharedBuffer> | (Promise<$mol_run_error_context> & {
|
|
495
|
+
destructor: () => void;
|
|
496
|
+
});
|
|
497
|
+
static error_message(res?: $mol_run_error_context): string;
|
|
498
|
+
}
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
declare namespace $ {
|
|
502
|
+
}
|
|
503
|
+
|
|
310
504
|
declare namespace $ {
|
|
311
505
|
var $mol_dom: typeof globalThis;
|
|
312
506
|
}
|
|
@@ -381,6 +575,13 @@ declare namespace $ {
|
|
|
381
575
|
}
|
|
382
576
|
}
|
|
383
577
|
|
|
578
|
+
declare namespace $ {
|
|
579
|
+
class $mol_after_frame extends $mol_after_timeout {
|
|
580
|
+
task: () => void;
|
|
581
|
+
constructor(task: () => void);
|
|
582
|
+
}
|
|
583
|
+
}
|
|
584
|
+
|
|
384
585
|
declare namespace $ {
|
|
385
586
|
function $mol_wire_method<Host extends object, Args extends readonly any[]>(host: Host, field: PropertyKey, descr?: TypedPropertyDescriptor<(...args: Args) => any>): {
|
|
386
587
|
value: (this: Host, ...args: Args) => any;
|
package/node.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../mam.d.ts","../../../dom/context/context.d.ts","../../../promise/like/like.d.ts","../../../fail/fail.d.ts","../../../fail/hidden/hidden.d.ts","../../../fail/catch/catch.d.ts","../../../try/try.d.ts","../../../fail/log/log.d.ts","../../../func/name/name.d.ts","../../../ambient/ambient.d.ts","../../../delegate/delegate.d.ts","../../../owning/owning.d.ts","../../../type/writable/writable.d.ts","../../../key/key.d.ts","../../../object2/object2.d.ts","../../../object/object.d.ts","../../../guid/guid.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","../../../wire/task/task.d.ts","../../../wire/sync/sync.d.ts","../../../dom/dom.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","../../../key/key/key.d.ts","../../../after/timeout/timeout.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/proxy/proxy.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;AACA;ACfA;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;ACHA;AACA;AACA;AACA;AACA;ACJA;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;ACJA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AClBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACPA;AACA;AACA;AACA;ACHA;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;AACA;AACA;ACrBA;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;ACTA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACVA;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;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;AACA;AACA;AACA;AACA;AACA;ACTA;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;ACJA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACjBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACPA;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]}
|
|
1
|
+
{"version":3,"sources":["../../../../mam.d.ts","../../../dom/context/context.d.ts","../../../../node/internal/check/check.node.d.ts","../../../promise/like/like.d.ts","../../../fail/fail.d.ts","../../../fail/hidden/hidden.d.ts","../../../fail/catch/catch.d.ts","../../../try/try.d.ts","../../../fail/log/log.d.ts","../../../../node/autoinstall/autoinstall.node.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","../../../key/key.d.ts","../../../object2/object2.d.ts","../../../object/object.d.ts","../../../env/env.d.ts","../../../env/env.node.d.ts","../../../guid/guid.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","../../../maybe/maybe.d.ts","../../../tree2/tree2.d.ts","../../../error/syntax/syntax.d.ts","../../../tree2/from/string/string.d.ts","../../../array/chunks/chunks.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","../../../dom/context/context.node.d.ts","../../../dom/dom.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","../../../key/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/proxy/proxy.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;AACA;ACfA;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;ACHA;AACA;AACA;AACA;ACHA;AACA;AACA;AACA;ACHA;AACA;AACA;AACA;AACA;ACJA;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;ACJA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AClBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACPA;AACA;AACA;AACA;ACHA;AACA;AACA;ACFA;AACA;AACA;AACA;ACHA;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;AACA;AACA;ACrBA;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;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;AACA;ACtCA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACRA;AACA;AACA;AACA;ACHA;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;AACA;ACTA;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;ACFA;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;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;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;ACJA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACjBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACPA;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,null,null,null,null,null,null,null]}
|
package/package.json
CHANGED
package/web.d.ts
CHANGED
|
@@ -1,3 +1,605 @@
|
|
|
1
|
+
declare let _$_: {
|
|
2
|
+
new (): {};
|
|
3
|
+
} & typeof globalThis;
|
|
4
|
+
declare class $ extends _$_ {
|
|
5
|
+
}
|
|
6
|
+
declare namespace $ {
|
|
7
|
+
export type $ = typeof $$;
|
|
8
|
+
export class $$ extends $ {
|
|
9
|
+
static $: $;
|
|
10
|
+
}
|
|
11
|
+
namespace $$ {
|
|
12
|
+
type $$ = $;
|
|
13
|
+
}
|
|
14
|
+
export {};
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
declare namespace $ {
|
|
18
|
+
var $mol_dom_context: typeof globalThis;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
declare namespace $ {
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
declare namespace $ {
|
|
25
|
+
function $mol_fail(error: any): never;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
declare namespace $ {
|
|
29
|
+
function $mol_func_name(this: $, func: Function): string;
|
|
30
|
+
function $mol_func_name_from<Target extends Function>(target: Target, source: Function): Target;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
declare namespace $ {
|
|
34
|
+
var $mol_dom: typeof globalThis;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
declare namespace $ {
|
|
38
|
+
function $mol_dom_render_children(el: Element | DocumentFragment, childNodes: NodeList | Array<Node | string | null>): void;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
declare namespace $ {
|
|
42
|
+
type $mol_type_partial_deep<Val> = Val extends object ? Val extends Function ? Val : {
|
|
43
|
+
[field in keyof Val]?: $mol_type_partial_deep<Val[field]> | undefined;
|
|
44
|
+
} : Val;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
declare namespace $ {
|
|
48
|
+
let $mol_jsx_prefix: string;
|
|
49
|
+
let $mol_jsx_crumbs: string;
|
|
50
|
+
let $mol_jsx_booked: null | Set<string>;
|
|
51
|
+
let $mol_jsx_document: $mol_jsx.JSX.ElementClass['ownerDocument'];
|
|
52
|
+
const $mol_jsx_frag = "";
|
|
53
|
+
function $mol_jsx<Props extends $mol_jsx.JSX.IntrinsicAttributes, Children extends Array<Node | string>>(Elem: string | ((props: Props, ...children: Children) => Element), props: Props, ...childNodes: Children): Element | DocumentFragment;
|
|
54
|
+
namespace $mol_jsx.JSX {
|
|
55
|
+
interface Element extends HTMLElement {
|
|
56
|
+
class?: string;
|
|
57
|
+
}
|
|
58
|
+
interface ElementClass {
|
|
59
|
+
attributes: {};
|
|
60
|
+
ownerDocument: Pick<Document, 'getElementById' | 'createElementNS' | 'createDocumentFragment'>;
|
|
61
|
+
childNodes: Array<Node | string>;
|
|
62
|
+
valueOf(): Element;
|
|
63
|
+
}
|
|
64
|
+
type OrString<Dict> = {
|
|
65
|
+
[key in keyof Dict]: Dict[key] | string;
|
|
66
|
+
};
|
|
67
|
+
type IntrinsicElements = {
|
|
68
|
+
[key in keyof ElementTagNameMap]?: $.$mol_type_partial_deep<OrString<Element & IntrinsicAttributes & ElementTagNameMap[key]>>;
|
|
69
|
+
};
|
|
70
|
+
interface IntrinsicAttributes {
|
|
71
|
+
id?: string;
|
|
72
|
+
xmlns?: string;
|
|
73
|
+
}
|
|
74
|
+
interface ElementAttributesProperty {
|
|
75
|
+
attributes: {};
|
|
76
|
+
}
|
|
77
|
+
interface ElementChildrenAttribute {
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
declare namespace $ {
|
|
83
|
+
function $mol_jsx_attach<Result>(next: typeof $mol_jsx_document, action: () => Result): Result;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
declare namespace $ {
|
|
87
|
+
const $mol_ambient_ref: unique symbol;
|
|
88
|
+
type $mol_ambient_context = $;
|
|
89
|
+
function $mol_ambient(this: $ | void, overrides: Partial<$>): $;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
declare namespace $ {
|
|
93
|
+
function $mol_delegate<Value extends object>(proto: Value, target: () => Value): Value;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
declare namespace $ {
|
|
97
|
+
const $mol_owning_map: WeakMap<any, any>;
|
|
98
|
+
function $mol_owning_allow<Having>(having: Having): having is Having & {
|
|
99
|
+
destructor(): void;
|
|
100
|
+
};
|
|
101
|
+
function $mol_owning_get<Having, Owner extends object>(having: Having, Owner?: {
|
|
102
|
+
new (): Owner;
|
|
103
|
+
}): Owner | null;
|
|
104
|
+
function $mol_owning_check<Owner, Having>(owner: Owner, having: Having): having is Having & {
|
|
105
|
+
destructor(): void;
|
|
106
|
+
};
|
|
107
|
+
function $mol_owning_catch<Owner, Having>(owner: Owner, having: Having): boolean;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
declare namespace $ {
|
|
111
|
+
function $mol_fail_hidden(error: any): never;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
declare namespace $ {
|
|
115
|
+
type $mol_type_writable<T> = {
|
|
116
|
+
-readonly [P in keyof T]: T[P];
|
|
117
|
+
};
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
declare namespace $ {
|
|
121
|
+
const $mol_key_handle: unique symbol;
|
|
122
|
+
const $mol_key_store: WeakMap<object, string>;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
declare namespace $ {
|
|
126
|
+
class $mol_object2 {
|
|
127
|
+
static $: $;
|
|
128
|
+
[Symbol.toStringTag]: string;
|
|
129
|
+
[$mol_ambient_ref]: $;
|
|
130
|
+
get $(): $;
|
|
131
|
+
set $(next: $);
|
|
132
|
+
static create<Instance>(this: new (init?: (instance: any) => void) => Instance, init?: (instance: $mol_type_writable<Instance>) => void): Instance;
|
|
133
|
+
static [Symbol.toPrimitive](): any;
|
|
134
|
+
static toString(): any;
|
|
135
|
+
static toJSON(): any;
|
|
136
|
+
static [$mol_key_handle](): any;
|
|
137
|
+
destructor(): void;
|
|
138
|
+
static destructor(): void;
|
|
139
|
+
[Symbol.dispose](): void;
|
|
140
|
+
toString(): string;
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
declare namespace $ {
|
|
145
|
+
function $mol_guid(length?: number, exists?: (id: string) => boolean): string;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
declare namespace $ {
|
|
149
|
+
enum $mol_wire_cursor {
|
|
150
|
+
stale = -1,
|
|
151
|
+
doubt = -2,
|
|
152
|
+
fresh = -3,
|
|
153
|
+
final = -4
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
declare namespace $ {
|
|
158
|
+
class $mol_wire_pub extends Object {
|
|
159
|
+
constructor(id?: string);
|
|
160
|
+
[Symbol.toStringTag]: string;
|
|
161
|
+
data: unknown[];
|
|
162
|
+
static get [Symbol.species](): ArrayConstructor;
|
|
163
|
+
protected sub_from: number;
|
|
164
|
+
get sub_list(): readonly $mol_wire_sub[];
|
|
165
|
+
get sub_empty(): boolean;
|
|
166
|
+
sub_on(sub: $mol_wire_pub, pub_pos: number): number;
|
|
167
|
+
sub_off(sub_pos: number): void;
|
|
168
|
+
reap(): void;
|
|
169
|
+
promote(): void;
|
|
170
|
+
fresh(): void;
|
|
171
|
+
complete(): void;
|
|
172
|
+
get incompleted(): boolean;
|
|
173
|
+
emit(quant?: $mol_wire_cursor): void;
|
|
174
|
+
peer_move(from_pos: number, to_pos: number): void;
|
|
175
|
+
peer_repos(peer_pos: number, self_pos: number): void;
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
declare namespace $ {
|
|
180
|
+
interface $mol_wire_sub extends $mol_wire_pub {
|
|
181
|
+
temp: boolean;
|
|
182
|
+
pub_list: $mol_wire_pub[];
|
|
183
|
+
track_on(): $mol_wire_sub | null;
|
|
184
|
+
track_next(pub?: $mol_wire_pub): $mol_wire_pub | null;
|
|
185
|
+
pub_off(pub_pos: number): void;
|
|
186
|
+
track_cut(sub: $mol_wire_pub | null): void;
|
|
187
|
+
track_off(sub: $mol_wire_pub | null): void;
|
|
188
|
+
absorb(quant: $mol_wire_cursor, pos: number): void;
|
|
189
|
+
destructor(): void;
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
declare namespace $ {
|
|
194
|
+
let $mol_wire_auto_sub: $mol_wire_sub | null;
|
|
195
|
+
function $mol_wire_auto(next?: $mol_wire_sub | null): $mol_wire_sub | null;
|
|
196
|
+
const $mol_wire_affected: ($mol_wire_sub | number)[];
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
declare namespace $ {
|
|
200
|
+
function $mol_dev_format_register(config: {
|
|
201
|
+
header: (val: any, config: any) => any;
|
|
202
|
+
hasBody: (val: any, config: any) => false;
|
|
203
|
+
} | {
|
|
204
|
+
header: (val: any, config: any) => any;
|
|
205
|
+
hasBody: (val: any, config: any) => boolean;
|
|
206
|
+
body: (val: any, config: any) => any;
|
|
207
|
+
}): void;
|
|
208
|
+
const $mol_dev_format_head: unique symbol;
|
|
209
|
+
const $mol_dev_format_body: unique symbol;
|
|
210
|
+
function $mol_dev_format_native(obj: any): any[];
|
|
211
|
+
function $mol_dev_format_auto(obj: any): any[];
|
|
212
|
+
function $mol_dev_format_element(element: string, style: object, ...content: any[]): any[];
|
|
213
|
+
let $mol_dev_format_span: (style: object, ...content: any[]) => any[];
|
|
214
|
+
let $mol_dev_format_div: (style: object, ...content: any[]) => any[];
|
|
215
|
+
let $mol_dev_format_ol: (style: object, ...content: any[]) => any[];
|
|
216
|
+
let $mol_dev_format_li: (style: object, ...content: any[]) => any[];
|
|
217
|
+
let $mol_dev_format_table: (style: object, ...content: any[]) => any[];
|
|
218
|
+
let $mol_dev_format_tr: (style: object, ...content: any[]) => any[];
|
|
219
|
+
let $mol_dev_format_td: (style: object, ...content: any[]) => any[];
|
|
220
|
+
let $mol_dev_format_accent: (...args: any[]) => any[];
|
|
221
|
+
let $mol_dev_format_strong: (...args: any[]) => any[];
|
|
222
|
+
let $mol_dev_format_string: (...args: any[]) => any[];
|
|
223
|
+
let $mol_dev_format_shade: (...args: any[]) => any[];
|
|
224
|
+
let $mol_dev_format_indent: (...args: any[]) => any[];
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
declare namespace $ {
|
|
228
|
+
function $mol_const<Value>(value: Value): {
|
|
229
|
+
(): Value;
|
|
230
|
+
'()': Value;
|
|
231
|
+
};
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
declare namespace $ {
|
|
235
|
+
class $mol_wire_pub_sub extends $mol_wire_pub implements $mol_wire_sub {
|
|
236
|
+
protected pub_from: number;
|
|
237
|
+
protected cursor: $mol_wire_cursor;
|
|
238
|
+
get temp(): boolean;
|
|
239
|
+
get pub_list(): $mol_wire_pub[];
|
|
240
|
+
track_on(): $mol_wire_sub | null;
|
|
241
|
+
promote(): void;
|
|
242
|
+
track_next(pub?: $mol_wire_pub): $mol_wire_pub | null;
|
|
243
|
+
track_off(sub: $mol_wire_sub | null): void;
|
|
244
|
+
pub_off(sub_pos: number): void;
|
|
245
|
+
destructor(): void;
|
|
246
|
+
track_cut(): void;
|
|
247
|
+
complete(): void;
|
|
248
|
+
complete_pubs(): void;
|
|
249
|
+
absorb(quant?: $mol_wire_cursor, pos?: number): void;
|
|
250
|
+
[$mol_dev_format_head](): any[];
|
|
251
|
+
get pub_empty(): boolean;
|
|
252
|
+
}
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
declare namespace $ {
|
|
256
|
+
class $mol_after_tick extends $mol_object2 {
|
|
257
|
+
task: () => void;
|
|
258
|
+
static promise: Promise<void> | null;
|
|
259
|
+
cancelled: boolean;
|
|
260
|
+
constructor(task: () => void);
|
|
261
|
+
destructor(): void;
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
declare namespace $ {
|
|
266
|
+
function $mol_promise_like(val: any): val is Promise<any>;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
declare namespace $ {
|
|
270
|
+
abstract class $mol_wire_fiber<Host, Args extends readonly unknown[], Result> extends $mol_wire_pub_sub {
|
|
271
|
+
readonly task: (this: Host, ...args: Args) => Result;
|
|
272
|
+
readonly host?: Host | undefined;
|
|
273
|
+
static warm: boolean;
|
|
274
|
+
static planning: Set<$mol_wire_fiber<any, any, any>>;
|
|
275
|
+
static reaping: Set<$mol_wire_fiber<any, any, any>>;
|
|
276
|
+
static plan_task: $mol_after_tick | null;
|
|
277
|
+
static plan(): void;
|
|
278
|
+
static sync(): void;
|
|
279
|
+
cache: Result | Error | Promise<Result | Error>;
|
|
280
|
+
get args(): Args;
|
|
281
|
+
result(): Result | undefined;
|
|
282
|
+
get incompleted(): boolean;
|
|
283
|
+
field(): string;
|
|
284
|
+
constructor(id: string, task: (this: Host, ...args: Args) => Result, host?: Host | undefined, args?: Args);
|
|
285
|
+
plan(): this;
|
|
286
|
+
reap(): void;
|
|
287
|
+
toString(): string;
|
|
288
|
+
toJSON(): string;
|
|
289
|
+
[$mol_dev_format_head](): any[];
|
|
290
|
+
[$mol_dev_format_body](): null;
|
|
291
|
+
get $(): any;
|
|
292
|
+
emit(quant?: $mol_wire_cursor): void;
|
|
293
|
+
fresh(): this | undefined;
|
|
294
|
+
refresh(): void;
|
|
295
|
+
abstract put(next: Result | Error | Promise<Result | Error>): Result | Error | Promise<Result | Error>;
|
|
296
|
+
sync(): Awaited<Result>;
|
|
297
|
+
async_raw(): Promise<Result>;
|
|
298
|
+
async(): Promise<Result> & {
|
|
299
|
+
destructor(): void;
|
|
300
|
+
};
|
|
301
|
+
step(): Promise<null>;
|
|
302
|
+
destructor(): void;
|
|
303
|
+
}
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
declare namespace $ {
|
|
307
|
+
function $mol_key<Value>(value: Value): string;
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
declare namespace $ {
|
|
311
|
+
class $mol_after_frame extends $mol_object2 {
|
|
312
|
+
task: () => void;
|
|
313
|
+
static _promise: Promise<void> | null;
|
|
314
|
+
static get promise(): Promise<void>;
|
|
315
|
+
cancelled: boolean;
|
|
316
|
+
promise: Promise<void>;
|
|
317
|
+
constructor(task: () => void);
|
|
318
|
+
destructor(): void;
|
|
319
|
+
}
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
declare namespace $ {
|
|
323
|
+
let $mol_compare_deep_cache: WeakMap<any, WeakMap<any, boolean>>;
|
|
324
|
+
function $mol_compare_deep<Value>(left: Value, right: Value): boolean;
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
declare namespace $ {
|
|
328
|
+
type $mol_log3_event<Fields> = {
|
|
329
|
+
[key in string]: unknown;
|
|
330
|
+
} & {
|
|
331
|
+
time?: string;
|
|
332
|
+
place: unknown;
|
|
333
|
+
message: string;
|
|
334
|
+
} & Fields;
|
|
335
|
+
type $mol_log3_logger<Fields, Res = void> = (this: $, event: $mol_log3_event<Fields>) => Res;
|
|
336
|
+
let $mol_log3_come: $mol_log3_logger<{}>;
|
|
337
|
+
let $mol_log3_done: $mol_log3_logger<{}>;
|
|
338
|
+
let $mol_log3_fail: $mol_log3_logger<{}>;
|
|
339
|
+
let $mol_log3_warn: $mol_log3_logger<{
|
|
340
|
+
hint: string;
|
|
341
|
+
}>;
|
|
342
|
+
let $mol_log3_rise: $mol_log3_logger<{}>;
|
|
343
|
+
let $mol_log3_area: $mol_log3_logger<{}, () => void>;
|
|
344
|
+
function $mol_log3_area_lazy(this: $, event: $mol_log3_event<{}>): () => void;
|
|
345
|
+
let $mol_log3_stack: (() => void)[];
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
declare namespace $ {
|
|
349
|
+
type $mol_type_keys_extract<Input, Upper, Lower = never> = {
|
|
350
|
+
[Field in keyof Input]: unknown extends Input[Field] ? never : Input[Field] extends never ? never : Input[Field] extends Upper ? [
|
|
351
|
+
Lower
|
|
352
|
+
] extends [Input[Field]] ? Field : never : never;
|
|
353
|
+
}[keyof Input];
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
declare namespace $ {
|
|
357
|
+
function $mol_log3_web_make(level: $mol_type_keys_extract<Console, Function>, color: string): (this: $, event: $mol_log3_event<{}>) => () => void;
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
declare namespace $ {
|
|
361
|
+
class $mol_wire_task<Host, Args extends readonly unknown[], Result> extends $mol_wire_fiber<Host, Args, Result> {
|
|
362
|
+
static getter<Host, Args extends readonly unknown[], Result>(task: (this: Host, ...args: Args) => Result): (host: Host, args: Args) => $mol_wire_task<Host, Args, Result>;
|
|
363
|
+
get temp(): boolean;
|
|
364
|
+
complete(): void;
|
|
365
|
+
put(next: Result | Error | Promise<Result | Error>): Error | Result | Promise<Error | Result>;
|
|
366
|
+
destructor(): void;
|
|
367
|
+
}
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
declare namespace $ {
|
|
371
|
+
function $mol_wire_method<Host extends object, Args extends readonly any[]>(host: Host, field: PropertyKey, descr?: TypedPropertyDescriptor<(...args: Args) => any>): {
|
|
372
|
+
value: (this: Host, ...args: Args) => any;
|
|
373
|
+
enumerable?: boolean;
|
|
374
|
+
configurable?: boolean;
|
|
375
|
+
writable?: boolean;
|
|
376
|
+
get?: (() => (...args: Args) => any) | undefined;
|
|
377
|
+
set?: ((value: (...args: Args) => any) => void) | undefined;
|
|
378
|
+
};
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
declare namespace $ {
|
|
382
|
+
type $mol_type_tail<Tuple extends readonly any[]> = ((...tail: Tuple) => any) extends ((head: any, ...tail: infer Tail) => any) ? Tail : never;
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
declare namespace $ {
|
|
386
|
+
type $mol_type_foot<Tuple extends readonly any[]> = Tuple['length'] extends 0 ? never : Tuple[$mol_type_tail<Tuple>['length']];
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
declare namespace $ {
|
|
390
|
+
function $mol_fail_catch(error: unknown): boolean;
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
declare namespace $ {
|
|
394
|
+
function $mol_try<Result>(handler: () => Result): Result | Error;
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
declare namespace $ {
|
|
398
|
+
function $mol_try_web<Result>(handler2: () => Result): Result | Error;
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
declare namespace $ {
|
|
402
|
+
function $mol_fail_log(error: unknown): boolean;
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
declare namespace $ {
|
|
406
|
+
class $mol_wire_atom<Host, Args extends readonly unknown[], Result> extends $mol_wire_fiber<Host, Args, Result> {
|
|
407
|
+
static solo<Host, Args extends readonly unknown[], Result>(host: Host, task: (this: Host, ...args: Args) => Result): $mol_wire_atom<Host, Args, Result>;
|
|
408
|
+
static plex<Host, Args extends readonly unknown[], Result>(host: Host, task: (this: Host, ...args: Args) => Result, key: Args[0]): $mol_wire_atom<Host, Args, Result>;
|
|
409
|
+
static watching: Set<$mol_wire_atom<any, any, any>>;
|
|
410
|
+
static watcher: $mol_after_frame | null;
|
|
411
|
+
static watch(): void;
|
|
412
|
+
watch(): void;
|
|
413
|
+
resync(args: Args): Error | Result | Promise<Error | Result>;
|
|
414
|
+
once(): Awaited<Result>;
|
|
415
|
+
channel(): ((next?: $mol_type_foot<Args>) => Awaited<Result>) & {
|
|
416
|
+
atom: $mol_wire_atom<Host, Args, Result>;
|
|
417
|
+
};
|
|
418
|
+
destructor(): void;
|
|
419
|
+
put(next: Result | Error | Promise<Result | Error>): Error | Result | Promise<Error | Result>;
|
|
420
|
+
}
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
declare namespace $ {
|
|
424
|
+
function $mol_wire_field<Host extends object, Field extends keyof Host, Value extends Host[Field]>(host: Host, field: Field, descr?: TypedPropertyDescriptor<Value>): any;
|
|
425
|
+
}
|
|
426
|
+
|
|
427
|
+
declare namespace $ {
|
|
428
|
+
export function $mol_wire_solo<Args extends any[]>(host: object, field: string, descr?: TypedPropertyDescriptor<(...args: Args) => any>): TypedPropertyDescriptor<(...args: First_optional<Args>) => any>;
|
|
429
|
+
type First_optional<Args extends any[]> = Args extends [] ? [] : [Args[0] | undefined, ...$mol_type_tail<Args>];
|
|
430
|
+
export {};
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
declare namespace $ {
|
|
434
|
+
function $mol_wire_plex<Args extends [any, ...any[]]>(host: object, field: string, descr?: TypedPropertyDescriptor<(...args: Args) => any>): {
|
|
435
|
+
value: (this: typeof host, ...args: Args) => any;
|
|
436
|
+
enumerable?: boolean;
|
|
437
|
+
configurable?: boolean;
|
|
438
|
+
writable?: boolean;
|
|
439
|
+
get?: (() => (...args: Args) => any) | undefined;
|
|
440
|
+
set?: ((value: (...args: Args) => any) => void) | undefined;
|
|
441
|
+
};
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
declare namespace $ {
|
|
445
|
+
let $mol_mem: typeof $mol_wire_solo;
|
|
446
|
+
let $mol_mem_key: typeof $mol_wire_plex;
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
declare namespace $ {
|
|
450
|
+
abstract class $mol_jsx_view extends $mol_object2 {
|
|
451
|
+
static of<This extends typeof $mol_jsx_view>(this: This, node: Element): InstanceType<This>;
|
|
452
|
+
attributes: Partial<Pick<this, Exclude<keyof this, 'valueOf'>>>;
|
|
453
|
+
ownerDocument: typeof $mol_jsx_document;
|
|
454
|
+
className: string;
|
|
455
|
+
get childNodes(): Array<Node | string>;
|
|
456
|
+
valueOf(): HTMLElement;
|
|
457
|
+
abstract render(): HTMLElement;
|
|
458
|
+
}
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
declare namespace $ {
|
|
462
|
+
function $mol_wire_probe<Value>(task: () => Value, def?: Value): Value | undefined;
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
declare namespace $ {
|
|
466
|
+
function $mol_wire_solid(): void;
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
declare namespace $ {
|
|
470
|
+
function $mol_wire_watch(): void;
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
declare namespace $ {
|
|
474
|
+
export function $mol_wire_sync<Host extends object>(obj: Host): ObjectOrFunctionResultAwaited<Host>;
|
|
475
|
+
type FunctionResultAwaited<Some> = Some extends (...args: infer Args) => infer Res ? (...args: Args) => Awaited<Res> : Some;
|
|
476
|
+
type ConstructorResultAwaited<Some> = Some extends new (...args: infer Args) => infer Res ? new (...args: Args) => Res : {};
|
|
477
|
+
type MethodsResultAwaited<Host extends Object> = {
|
|
478
|
+
[K in keyof Host]: FunctionResultAwaited<Host[K]>;
|
|
479
|
+
};
|
|
480
|
+
type ObjectOrFunctionResultAwaited<Some> = (Some extends (...args: any) => unknown ? FunctionResultAwaited<Some> : {}) & (Some extends Object ? MethodsResultAwaited<Some> & ConstructorResultAwaited<Some> : Some);
|
|
481
|
+
export {};
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
declare namespace $ {
|
|
485
|
+
export function $mol_wire_async<Host extends object>(obj: Host): ObjectOrFunctionResultPromisify<Host>;
|
|
486
|
+
type FunctionResultPromisify<Some> = Some extends (...args: infer Args) => infer Res ? Res extends PromiseLike<unknown> ? Some : (...args: Args) => Promise<Res> : Some;
|
|
487
|
+
type MethodsResultPromisify<Host extends Object> = {
|
|
488
|
+
[K in keyof Host]: FunctionResultPromisify<Host[K]>;
|
|
489
|
+
};
|
|
490
|
+
type ObjectOrFunctionResultPromisify<Some> = (Some extends (...args: any) => unknown ? FunctionResultPromisify<Some> : {}) & (Some extends Object ? MethodsResultPromisify<Some> : Some);
|
|
491
|
+
export {};
|
|
492
|
+
}
|
|
493
|
+
|
|
494
|
+
declare namespace $ {
|
|
495
|
+
function $mol_wire_race<Tasks extends ((...args: any) => any)[]>(...tasks: Tasks): {
|
|
496
|
+
[index in keyof Tasks]: ReturnType<Tasks[index]>;
|
|
497
|
+
};
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
declare namespace $ {
|
|
501
|
+
namespace $$ { }
|
|
502
|
+
const $mol_object_field: unique symbol;
|
|
503
|
+
class $mol_object extends $mol_object2 {
|
|
504
|
+
static make<This extends typeof $mol_object>(this: This, config: Partial<InstanceType<This>>): InstanceType<This>;
|
|
505
|
+
}
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
declare namespace $ {
|
|
509
|
+
class $mol_after_timeout extends $mol_object2 {
|
|
510
|
+
delay: number;
|
|
511
|
+
task: () => void;
|
|
512
|
+
id: any;
|
|
513
|
+
constructor(delay: number, task: () => void);
|
|
514
|
+
destructor(): void;
|
|
515
|
+
}
|
|
516
|
+
}
|
|
517
|
+
|
|
518
|
+
declare namespace $ {
|
|
519
|
+
class $mol_state_time extends $mol_object {
|
|
520
|
+
static task(precision: number, reset?: null): $mol_after_timeout | $mol_after_frame;
|
|
521
|
+
static now(precision: number): number;
|
|
522
|
+
}
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
declare namespace $ {
|
|
526
|
+
function $mol_wire_easing(next: any): any;
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
declare namespace $ {
|
|
530
|
+
function $mol_wire_patch(obj: object): void;
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
declare namespace $ {
|
|
534
|
+
type $mol_type_result<Func> = Func extends (...params: any) => infer Result ? Result : Func extends new (...params: any) => infer Result ? Result : never;
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
declare namespace $ {
|
|
538
|
+
function $mol_wire_let<Host extends {}>(host: Host): Host & { [Field in keyof Host]: {
|
|
539
|
+
atom: $mol_wire_atom<Host, Parameters<Extract<Host[Field], (...args: any[]) => any>>, $mol_type_result<Host[Field]>>;
|
|
540
|
+
}; };
|
|
541
|
+
}
|
|
542
|
+
|
|
543
|
+
declare namespace $ {
|
|
544
|
+
class $mol_wire_set<Value> extends Set<Value> {
|
|
545
|
+
pub: $mol_wire_pub;
|
|
546
|
+
has(value: Value): boolean;
|
|
547
|
+
entries(): SetIterator<[Value, Value]>;
|
|
548
|
+
keys(): SetIterator<Value>;
|
|
549
|
+
values(): SetIterator<Value>;
|
|
550
|
+
forEach(task: (value: Value, value2: Value, set: Set<Value>) => void, self?: any): void;
|
|
551
|
+
[Symbol.iterator](): SetIterator<Value>;
|
|
552
|
+
get size(): number;
|
|
553
|
+
add(value: Value): this;
|
|
554
|
+
delete(value: Value): boolean;
|
|
555
|
+
clear(): void;
|
|
556
|
+
item(val: Value, next?: boolean): boolean;
|
|
557
|
+
}
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
declare namespace $ {
|
|
561
|
+
function $mol_wire_proxy_pub(id: string, target: object): $mol_wire_pub;
|
|
562
|
+
function $mol_wire_proxy<Target>(id: string, target: Target): Target;
|
|
563
|
+
}
|
|
564
|
+
|
|
565
|
+
declare namespace $ {
|
|
566
|
+
class $mol_wire_dict<Key, Value> extends Map<Key, Value> {
|
|
567
|
+
pub: $mol_wire_pub;
|
|
568
|
+
has(key: Key): boolean;
|
|
569
|
+
get(key: Key): Value | undefined;
|
|
570
|
+
entries(): MapIterator<[Key, Value]>;
|
|
571
|
+
keys(): MapIterator<Key>;
|
|
572
|
+
values(): MapIterator<Value>;
|
|
573
|
+
forEach(task: (value: Value, key: Key, dict: Map<Key, Value>) => void, self?: any): void;
|
|
574
|
+
[Symbol.iterator](): MapIterator<[Key, Value]>;
|
|
575
|
+
get size(): number;
|
|
576
|
+
set(key: Key, value: Value): this;
|
|
577
|
+
delete(key: Key): boolean;
|
|
578
|
+
clear(): void;
|
|
579
|
+
item(key: Key, next?: Value | null): NonNullable<Value> | null;
|
|
580
|
+
}
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
declare namespace $ {
|
|
584
|
+
class $mol_promise<Result = void> extends Promise<Result> {
|
|
585
|
+
done: (value: Result | PromiseLike<Result>) => void;
|
|
586
|
+
fail: (reason?: any) => void;
|
|
587
|
+
constructor(executor?: (done: (value: Result | PromiseLike<Result>) => void, fail: (reason?: any) => void) => void);
|
|
588
|
+
}
|
|
589
|
+
}
|
|
590
|
+
|
|
591
|
+
declare namespace $ {
|
|
592
|
+
function $mol_wait_timeout_async(this: $, timeout: number): Promise<void>;
|
|
593
|
+
function $mol_wait_timeout(this: $, timeout: number): void;
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
declare namespace $ {
|
|
597
|
+
class $mol_wire_log extends $mol_object2 {
|
|
598
|
+
static watch(task?: () => any): (() => any) | undefined;
|
|
599
|
+
static track(fiber: $mol_wire_fiber<any, any, any>): any;
|
|
600
|
+
static active(): void;
|
|
601
|
+
}
|
|
602
|
+
}
|
|
1
603
|
|
|
2
604
|
export = $;
|
|
3
605
|
//# sourceMappingURL=web.d.ts.map
|
package/web.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":[],"names":[],"mappings":"","sourcesContent":[]}
|
|
1
|
+
{"version":3,"sources":["../../../../mam.d.ts","../../../dom/context/context.d.ts","../../../dom/context/context.web.d.ts","../../../fail/fail.d.ts","../../../func/name/name.d.ts","../../../dom/dom.d.ts","../../../dom/render/children/children.d.ts","../../../type/partial/deep/deep.d.ts","../../jsx.d.ts","../../attach/attach.d.ts","../../../ambient/ambient.d.ts","../../../delegate/delegate.d.ts","../../../owning/owning.d.ts","../../../fail/hidden/hidden.d.ts","../../../type/writable/writable.d.ts","../../../key/key.d.ts","../../../object2/object2.d.ts","../../../guid/guid.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","../../../const/const.d.ts","../../../wire/pub/sub/sub.d.ts","../../../after/tick/tick.d.ts","../../../promise/like/like.d.ts","../../../wire/fiber/fiber.d.ts","../../../key/key/key.d.ts","../../../after/frame/frame.web.d.ts","../../../compare/deep/deep.d.ts","../../../log3/log3.d.ts","../../../type/keys/extract/extract.d.ts","../../../log3/log3.web.d.ts","../../../wire/task/task.d.ts","../../../wire/method/method.d.ts","../../../type/tail/tail.d.ts","../../../type/foot/foot.d.ts","../../../fail/catch/catch.d.ts","../../../try/try.d.ts","../../../try/try.web.d.ts","../../../fail/log/log.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/sync/sync.d.ts","../../../wire/async/async.d.ts","../../../wire/race/race.d.ts","../../../object/object.d.ts","../../../after/timeout/timeout.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/proxy/proxy.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;AACA;ACfA;AACA;AACA;AACA;ACHA;AACA;AACA;ACFA;AACA;AACA;AACA;ACHA;AACA;AACA;AACA;AACA;ACJA;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;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;ACLA;AACA;AACA;AACA;ACHA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACbA;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;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AClBA;AACA;AACA;AACA;ACHA;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;AACA;AACA;ACrBA;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;ACNA;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;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;ACpCA;AACA;AACA;AACA;ACHA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACXA;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;ACPA;AACA;AACA;AACA;ACHA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACTA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACVA;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;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;AACA;ACVA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACTA;AACA;AACA;AACA;AACA;AACA;ACLA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACPA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACTA;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;ACJA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACjBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACPA;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]}
|