mol_schema 0.0.5 → 0.0.7

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.
Files changed (3) hide show
  1. package/package.json +1 -1
  2. package/web.d.ts +1139 -0
  3. package/web.d.ts.map +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mol_schema",
3
- "version": "0.0.5",
3
+ "version": "0.0.7",
4
4
  "exports": {
5
5
  "node": {
6
6
  "import": "./node.mjs",
package/web.d.ts CHANGED
@@ -1,3 +1,1142 @@
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
+ const $mol_key_handle: unique symbol;
19
+ const $mol_key_store: WeakMap<object, string>;
20
+ }
21
+
22
+ declare namespace $ {
23
+ function $mol_func_name(this: $, func: Function): string;
24
+ function $mol_func_name_from<Target extends Function>(target: Target, source: Function): Target;
25
+ }
26
+
27
+ declare namespace $ {
28
+ abstract class $mol_schema_any extends Object {
29
+ static [Symbol.toStringTag]: string;
30
+ static [$mol_key_handle](): string;
31
+ static toString(): string;
32
+ static check<Val>(val: Val): val is Val & typeof this.default;
33
+ static guard<Value>(value: Value): Value;
34
+ static cast(value: unknown): typeof this.default;
35
+ static default: unknown;
36
+ }
37
+ }
38
+
39
+ declare namespace $ {
40
+ function $mol_fail(error: any): never;
41
+ }
42
+
43
+ declare namespace $ {
44
+ abstract class $mol_schema_boolean extends $mol_schema_any {
45
+ static guard<Value>(value: Value): Value & typeof this.default;
46
+ static default: boolean;
47
+ }
48
+ }
49
+
50
+ declare namespace $ {
51
+ abstract class $mol_schema_string extends $mol_schema_any {
52
+ static guard<Value>(value: Value): Value & typeof this.default;
53
+ static cast(value: unknown): typeof this.default;
54
+ static default: string;
55
+ }
56
+ }
57
+
58
+ declare namespace $ {
59
+ function $mol_guid(length?: number, exists?: (id: string) => boolean): string;
60
+ }
61
+
62
+ declare namespace $ {
63
+ function $mol_key<Value>(value: Value): string;
64
+ }
65
+
66
+ declare namespace $ {
67
+ function $mol_schema_pattern<Pattern extends RegExp>(Pattern: Pattern): {
68
+ new (value?: any): {
69
+ constructor: Function;
70
+ toString(): string;
71
+ toLocaleString(): string;
72
+ valueOf(): Object;
73
+ hasOwnProperty(v: PropertyKey): boolean;
74
+ isPrototypeOf(v: Object): boolean;
75
+ propertyIsEnumerable(v: PropertyKey): boolean;
76
+ };
77
+ Pattern: Pattern;
78
+ toString(): string;
79
+ guard<Value>(value: Value): Value & string;
80
+ cast(value: unknown): string;
81
+ default: string;
82
+ check<Val>(val: Val): val is Val & typeof this.default;
83
+ [Symbol.toStringTag]: string;
84
+ [$mol_key_handle](): string;
85
+ getPrototypeOf(o: any): any;
86
+ getOwnPropertyDescriptor(o: any, p: PropertyKey): PropertyDescriptor | undefined;
87
+ getOwnPropertyNames(o: any): string[];
88
+ create(o: object | null): any;
89
+ create(o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
90
+ defineProperty<T>(o: T, p: PropertyKey, attributes: PropertyDescriptor & ThisType<any>): T;
91
+ defineProperties<T>(o: T, properties: PropertyDescriptorMap & ThisType<any>): T;
92
+ seal<T>(o: T): T;
93
+ freeze<T extends Function>(f: T): T;
94
+ freeze<T extends {
95
+ [idx: string]: U | null | undefined | object;
96
+ }, U extends string | bigint | number | boolean | symbol>(o: T): Readonly<T>;
97
+ freeze<T>(o: T): Readonly<T>;
98
+ preventExtensions<T>(o: T): T;
99
+ isSealed(o: any): boolean;
100
+ isFrozen(o: any): boolean;
101
+ isExtensible(o: any): boolean;
102
+ keys(o: object): string[];
103
+ keys(o: {}): string[];
104
+ assign<T extends {}, U>(target: T, source: U): T & U;
105
+ assign<T extends {}, U, V>(target: T, source1: U, source2: V): T & U & V;
106
+ assign<T extends {}, U, V, W>(target: T, source1: U, source2: V, source3: W): T & U & V & W;
107
+ assign(target: object, ...sources: any[]): any;
108
+ getOwnPropertySymbols(o: any): symbol[];
109
+ is(value1: any, value2: any): boolean;
110
+ setPrototypeOf(o: any, proto: object | null): any;
111
+ values<T>(o: {
112
+ [s: string]: T;
113
+ } | ArrayLike<T>): T[];
114
+ values(o: {}): any[];
115
+ entries<T>(o: {
116
+ [s: string]: T;
117
+ } | ArrayLike<T>): [string, T][];
118
+ entries(o: {}): [string, any][];
119
+ getOwnPropertyDescriptors<T>(o: T): { [P in keyof T]: TypedPropertyDescriptor<T[P]>; } & {
120
+ [x: string]: PropertyDescriptor;
121
+ };
122
+ fromEntries<T = any>(entries: Iterable<readonly [PropertyKey, T]>): {
123
+ [k: string]: T;
124
+ };
125
+ fromEntries(entries: Iterable<readonly any[]>): any;
126
+ hasOwn(o: object, v: PropertyKey): boolean;
127
+ groupBy<K extends PropertyKey, T>(items: Iterable<T>, keySelector: (item: T, index: number) => K): Partial<Record<K, T[]>>;
128
+ };
129
+ }
130
+
131
+ declare namespace $ {
132
+ abstract class $mol_schema_float extends $mol_schema_any {
133
+ static guard<Value>(value: Value): Value & typeof this.default;
134
+ static default: number;
135
+ }
136
+ }
137
+
138
+ declare namespace $ {
139
+ abstract class $mol_schema_integer extends $mol_schema_float {
140
+ $mol_schema_integer: boolean;
141
+ static guard<Value>(value: Value): Value & number & $mol_schema_integer;
142
+ static default: number & $mol_schema_integer;
143
+ }
144
+ }
145
+
146
+ declare namespace $ {
147
+ type $mol_type_intersect<Union> = (Union extends any ? (_: Union) => void : never) extends ((_: infer Intersection) => void) ? Intersection : never;
148
+ }
149
+
150
+ declare namespace $ {
151
+ function $mol_schema_every<Schemas extends readonly (typeof $mol_schema_any)[]>(Schemas: Schemas): {
152
+ new (value?: any): {
153
+ constructor: Function;
154
+ toString(): string;
155
+ toLocaleString(): string;
156
+ valueOf(): Object;
157
+ hasOwnProperty(v: PropertyKey): boolean;
158
+ isPrototypeOf(v: Object): boolean;
159
+ propertyIsEnumerable(v: PropertyKey): boolean;
160
+ };
161
+ Schemas: Schemas;
162
+ toString(): string;
163
+ guard<Value>(value: Value): Value & $mol_type_intersect<Schemas[number]["default"]>;
164
+ cast(value: unknown): $mol_type_intersect<Schemas[number]["default"]>;
165
+ default: $mol_type_intersect<Schemas[number]["default"]>;
166
+ check<Val>(val: Val): val is Val & typeof this.default;
167
+ [Symbol.toStringTag]: string;
168
+ [$mol_key_handle](): string;
169
+ getPrototypeOf(o: any): any;
170
+ getOwnPropertyDescriptor(o: any, p: PropertyKey): PropertyDescriptor | undefined;
171
+ getOwnPropertyNames(o: any): string[];
172
+ create(o: object | null): any;
173
+ create(o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
174
+ defineProperty<T>(o: T, p: PropertyKey, attributes: PropertyDescriptor & ThisType<any>): T;
175
+ defineProperties<T>(o: T, properties: PropertyDescriptorMap & ThisType<any>): T;
176
+ seal<T>(o: T): T;
177
+ freeze<T extends Function>(f: T): T;
178
+ freeze<T extends {
179
+ [idx: string]: U | null | undefined | object;
180
+ }, U extends string | bigint | number | boolean | symbol>(o: T): Readonly<T>;
181
+ freeze<T>(o: T): Readonly<T>;
182
+ preventExtensions<T>(o: T): T;
183
+ isSealed(o: any): boolean;
184
+ isFrozen(o: any): boolean;
185
+ isExtensible(o: any): boolean;
186
+ keys(o: object): string[];
187
+ keys(o: {}): string[];
188
+ assign<T extends {}, U>(target: T, source: U): T & U;
189
+ assign<T extends {}, U, V>(target: T, source1: U, source2: V): T & U & V;
190
+ assign<T extends {}, U, V, W>(target: T, source1: U, source2: V, source3: W): T & U & V & W;
191
+ assign(target: object, ...sources: any[]): any;
192
+ getOwnPropertySymbols(o: any): symbol[];
193
+ is(value1: any, value2: any): boolean;
194
+ setPrototypeOf(o: any, proto: object | null): any;
195
+ values<T>(o: {
196
+ [s: string]: T;
197
+ } | ArrayLike<T>): T[];
198
+ values(o: {}): any[];
199
+ entries<T>(o: {
200
+ [s: string]: T;
201
+ } | ArrayLike<T>): [string, T][];
202
+ entries(o: {}): [string, any][];
203
+ getOwnPropertyDescriptors<T>(o: T): { [P in keyof T]: TypedPropertyDescriptor<T[P]>; } & {
204
+ [x: string]: PropertyDescriptor;
205
+ };
206
+ fromEntries<T = any>(entries: Iterable<readonly [PropertyKey, T]>): {
207
+ [k: string]: T;
208
+ };
209
+ fromEntries(entries: Iterable<readonly any[]>): any;
210
+ hasOwn(o: object, v: PropertyKey): boolean;
211
+ groupBy<K extends PropertyKey, T>(items: Iterable<T>, keySelector: (item: T, index: number) => K): Partial<Record<K, T[]>>;
212
+ };
213
+ }
214
+
215
+ declare namespace $ {
216
+ function $mol_schema_range<Value extends number | bigint, Min extends Value, Max extends Value>(Min: Min, Max: Max): {
217
+ new (value?: any): {
218
+ constructor: Function;
219
+ toString(): string;
220
+ toLocaleString(): string;
221
+ valueOf(): Object;
222
+ hasOwnProperty(v: PropertyKey): boolean;
223
+ isPrototypeOf(v: Object): boolean;
224
+ propertyIsEnumerable(v: PropertyKey): boolean;
225
+ };
226
+ Min: Min;
227
+ Max: Max;
228
+ toString(): string;
229
+ guard<Value_1>(value: Value_1): Value_1 & Value & { [key in `$mol_schema_range_min=${Min}`]: true; } & { [key_1 in `$mol_schema_range_max=${Max}`]: true; };
230
+ cast(val: Value): Value;
231
+ default: Value & { [key in `$mol_schema_range_min=${Min}`]: true; } & { [key in `$mol_schema_range_max=${Max}`]: true; };
232
+ check<Val>(val: Val): val is Val & typeof this.default;
233
+ [Symbol.toStringTag]: string;
234
+ [$mol_key_handle](): string;
235
+ getPrototypeOf(o: any): any;
236
+ getOwnPropertyDescriptor(o: any, p: PropertyKey): PropertyDescriptor | undefined;
237
+ getOwnPropertyNames(o: any): string[];
238
+ create(o: object | null): any;
239
+ create(o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
240
+ defineProperty<T>(o: T, p: PropertyKey, attributes: PropertyDescriptor & ThisType<any>): T;
241
+ defineProperties<T>(o: T, properties: PropertyDescriptorMap & ThisType<any>): T;
242
+ seal<T>(o: T): T;
243
+ freeze<T extends Function>(f: T): T;
244
+ freeze<T extends {
245
+ [idx: string]: U | null | undefined | object;
246
+ }, U extends string | bigint | number | boolean | symbol>(o: T): Readonly<T>;
247
+ freeze<T>(o: T): Readonly<T>;
248
+ preventExtensions<T>(o: T): T;
249
+ isSealed(o: any): boolean;
250
+ isFrozen(o: any): boolean;
251
+ isExtensible(o: any): boolean;
252
+ keys(o: object): string[];
253
+ keys(o: {}): string[];
254
+ assign<T extends {}, U>(target: T, source: U): T & U;
255
+ assign<T extends {}, U, V>(target: T, source1: U, source2: V): T & U & V;
256
+ assign<T extends {}, U, V, W>(target: T, source1: U, source2: V, source3: W): T & U & V & W;
257
+ assign(target: object, ...sources: any[]): any;
258
+ getOwnPropertySymbols(o: any): symbol[];
259
+ is(value1: any, value2: any): boolean;
260
+ setPrototypeOf(o: any, proto: object | null): any;
261
+ values<T>(o: {
262
+ [s: string]: T;
263
+ } | ArrayLike<T>): T[];
264
+ values(o: {}): any[];
265
+ entries<T>(o: {
266
+ [s: string]: T;
267
+ } | ArrayLike<T>): [string, T][];
268
+ entries(o: {}): [string, any][];
269
+ getOwnPropertyDescriptors<T>(o: T): { [P in keyof T]: TypedPropertyDescriptor<T[P]>; } & {
270
+ [x: string]: PropertyDescriptor;
271
+ };
272
+ fromEntries<T = any>(entries: Iterable<readonly [PropertyKey, T]>): {
273
+ [k: string]: T;
274
+ };
275
+ fromEntries(entries: Iterable<readonly any[]>): any;
276
+ hasOwn(o: object, v: PropertyKey): boolean;
277
+ groupBy<K extends PropertyKey, T>(items: Iterable<T>, keySelector: (item: T, index: number) => K): Partial<Record<K, T[]>>;
278
+ };
279
+ }
280
+
281
+ declare namespace $ {
282
+ const $mol_schema_positive_base: {
283
+ new (value?: any): {
284
+ constructor: Function;
285
+ toString(): string;
286
+ toLocaleString(): string;
287
+ valueOf(): Object;
288
+ hasOwnProperty(v: PropertyKey): boolean;
289
+ isPrototypeOf(v: Object): boolean;
290
+ propertyIsEnumerable(v: PropertyKey): boolean;
291
+ };
292
+ Min: 0;
293
+ Max: number;
294
+ toString(): string;
295
+ guard<Value>(value: Value): (Value & (number | bigint)) & {
296
+ "$mol_schema_range_min=0": true;
297
+ } & {
298
+ [x: `$mol_schema_range_max=${number}`]: true;
299
+ };
300
+ cast(val: number | bigint): number | bigint;
301
+ default: Value & { [key in `$mol_schema_range_min=${Min}`]: true; } & { [key in `$mol_schema_range_max=${Max}`]: true; };
302
+ check<Val>(val: Val): val is Val & typeof this.default;
303
+ [Symbol.toStringTag]: string;
304
+ [$mol_key_handle](): string;
305
+ getPrototypeOf(o: any): any;
306
+ getOwnPropertyDescriptor(o: any, p: PropertyKey): PropertyDescriptor | undefined;
307
+ getOwnPropertyNames(o: any): string[];
308
+ create(o: object | null): any;
309
+ create(o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
310
+ defineProperty<T>(o: T, p: PropertyKey, attributes: PropertyDescriptor & ThisType<any>): T;
311
+ defineProperties<T>(o: T, properties: PropertyDescriptorMap & ThisType<any>): T;
312
+ seal<T>(o: T): T;
313
+ freeze<T extends Function>(f: T): T;
314
+ freeze<T extends {
315
+ [idx: string]: U | null | undefined | object;
316
+ }, U extends string | bigint | number | boolean | symbol>(o: T): Readonly<T>;
317
+ freeze<T>(o: T): Readonly<T>;
318
+ preventExtensions<T>(o: T): T;
319
+ isSealed(o: any): boolean;
320
+ isFrozen(o: any): boolean;
321
+ isExtensible(o: any): boolean;
322
+ keys(o: object): string[];
323
+ keys(o: {}): string[];
324
+ assign<T extends {}, U>(target: T, source: U): T & U;
325
+ assign<T extends {}, U, V>(target: T, source1: U, source2: V): T & U & V;
326
+ assign<T extends {}, U, V, W>(target: T, source1: U, source2: V, source3: W): T & U & V & W;
327
+ assign(target: object, ...sources: any[]): any;
328
+ getOwnPropertySymbols(o: any): symbol[];
329
+ is(value1: any, value2: any): boolean;
330
+ setPrototypeOf(o: any, proto: object | null): any;
331
+ values<T>(o: {
332
+ [s: string]: T;
333
+ } | ArrayLike<T>): T[];
334
+ values(o: {}): any[];
335
+ entries<T>(o: {
336
+ [s: string]: T;
337
+ } | ArrayLike<T>): [string, T][];
338
+ entries(o: {}): [string, any][];
339
+ getOwnPropertyDescriptors<T>(o: T): { [P in keyof T]: TypedPropertyDescriptor<T[P]>; } & {
340
+ [x: string]: PropertyDescriptor;
341
+ };
342
+ fromEntries<T = any>(entries: Iterable<readonly [PropertyKey, T]>): {
343
+ [k: string]: T;
344
+ };
345
+ fromEntries(entries: Iterable<readonly any[]>): any;
346
+ hasOwn(o: object, v: PropertyKey): boolean;
347
+ groupBy<K extends PropertyKey, T>(items: Iterable<T>, keySelector: (item: T, index: number) => K): Partial<Record<K, T[]>>;
348
+ };
349
+ export abstract class $mol_schema_positive extends $mol_schema_positive_base {
350
+ }
351
+ export {};
352
+ }
353
+
354
+ declare namespace $ {
355
+ const $mol_schema_natural_base: {
356
+ new (value?: any): {
357
+ constructor: Function;
358
+ toString(): string;
359
+ toLocaleString(): string;
360
+ valueOf(): Object;
361
+ hasOwnProperty(v: PropertyKey): boolean;
362
+ isPrototypeOf(v: Object): boolean;
363
+ propertyIsEnumerable(v: PropertyKey): boolean;
364
+ };
365
+ Schemas: (typeof $mol_schema_integer | typeof $mol_schema_positive)[];
366
+ toString(): string;
367
+ guard<Value>(value: Value): never;
368
+ cast(value: unknown): never;
369
+ default: $mol_type_intersect<Schemas[number]["default"]>;
370
+ check<Val>(val: Val): val is Val & typeof this.default;
371
+ [Symbol.toStringTag]: string;
372
+ [$mol_key_handle](): string;
373
+ getPrototypeOf(o: any): any;
374
+ getOwnPropertyDescriptor(o: any, p: PropertyKey): PropertyDescriptor | undefined;
375
+ getOwnPropertyNames(o: any): string[];
376
+ create(o: object | null): any;
377
+ create(o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
378
+ defineProperty<T>(o: T, p: PropertyKey, attributes: PropertyDescriptor & ThisType<any>): T;
379
+ defineProperties<T>(o: T, properties: PropertyDescriptorMap & ThisType<any>): T;
380
+ seal<T>(o: T): T;
381
+ freeze<T extends Function>(f: T): T;
382
+ freeze<T extends {
383
+ [idx: string]: U | null | undefined | object;
384
+ }, U extends string | bigint | number | boolean | symbol>(o: T): Readonly<T>;
385
+ freeze<T>(o: T): Readonly<T>;
386
+ preventExtensions<T>(o: T): T;
387
+ isSealed(o: any): boolean;
388
+ isFrozen(o: any): boolean;
389
+ isExtensible(o: any): boolean;
390
+ keys(o: object): string[];
391
+ keys(o: {}): string[];
392
+ assign<T extends {}, U>(target: T, source: U): T & U;
393
+ assign<T extends {}, U, V>(target: T, source1: U, source2: V): T & U & V;
394
+ assign<T extends {}, U, V, W>(target: T, source1: U, source2: V, source3: W): T & U & V & W;
395
+ assign(target: object, ...sources: any[]): any;
396
+ getOwnPropertySymbols(o: any): symbol[];
397
+ is(value1: any, value2: any): boolean;
398
+ setPrototypeOf(o: any, proto: object | null): any;
399
+ values<T>(o: {
400
+ [s: string]: T;
401
+ } | ArrayLike<T>): T[];
402
+ values(o: {}): any[];
403
+ entries<T>(o: {
404
+ [s: string]: T;
405
+ } | ArrayLike<T>): [string, T][];
406
+ entries(o: {}): [string, any][];
407
+ getOwnPropertyDescriptors<T>(o: T): { [P in keyof T]: TypedPropertyDescriptor<T[P]>; } & {
408
+ [x: string]: PropertyDescriptor;
409
+ };
410
+ fromEntries<T = any>(entries: Iterable<readonly [PropertyKey, T]>): {
411
+ [k: string]: T;
412
+ };
413
+ fromEntries(entries: Iterable<readonly any[]>): any;
414
+ hasOwn(o: object, v: PropertyKey): boolean;
415
+ groupBy<K extends PropertyKey, T>(items: Iterable<T>, keySelector: (item: T, index: number) => K): Partial<Record<K, T[]>>;
416
+ };
417
+ export abstract class $mol_schema_natural extends $mol_schema_natural_base {
418
+ }
419
+ export {};
420
+ }
421
+
422
+ declare namespace $ {
423
+ function $mol_schema_enum<Options extends readonly unknown[]>(Options: Options): {
424
+ new (value?: any): {
425
+ constructor: Function;
426
+ toString(): string;
427
+ toLocaleString(): string;
428
+ valueOf(): Object;
429
+ hasOwnProperty(v: PropertyKey): boolean;
430
+ isPrototypeOf(v: Object): boolean;
431
+ propertyIsEnumerable(v: PropertyKey): boolean;
432
+ };
433
+ Options: Options;
434
+ toString(): string;
435
+ guard<Value>(value: Value): Value & Options[number];
436
+ cast(val: unknown): unknown;
437
+ default: Options[number];
438
+ check<Val>(val: Val): val is Val & typeof this.default;
439
+ [Symbol.toStringTag]: string;
440
+ [$mol_key_handle](): string;
441
+ getPrototypeOf(o: any): any;
442
+ getOwnPropertyDescriptor(o: any, p: PropertyKey): PropertyDescriptor | undefined;
443
+ getOwnPropertyNames(o: any): string[];
444
+ create(o: object | null): any;
445
+ create(o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
446
+ defineProperty<T>(o: T, p: PropertyKey, attributes: PropertyDescriptor & ThisType<any>): T;
447
+ defineProperties<T>(o: T, properties: PropertyDescriptorMap & ThisType<any>): T;
448
+ seal<T>(o: T): T;
449
+ freeze<T extends Function>(f: T): T;
450
+ freeze<T extends {
451
+ [idx: string]: U | null | undefined | object;
452
+ }, U extends string | bigint | number | boolean | symbol>(o: T): Readonly<T>;
453
+ freeze<T>(o: T): Readonly<T>;
454
+ preventExtensions<T>(o: T): T;
455
+ isSealed(o: any): boolean;
456
+ isFrozen(o: any): boolean;
457
+ isExtensible(o: any): boolean;
458
+ keys(o: object): string[];
459
+ keys(o: {}): string[];
460
+ assign<T extends {}, U>(target: T, source: U): T & U;
461
+ assign<T extends {}, U, V>(target: T, source1: U, source2: V): T & U & V;
462
+ assign<T extends {}, U, V, W>(target: T, source1: U, source2: V, source3: W): T & U & V & W;
463
+ assign(target: object, ...sources: any[]): any;
464
+ getOwnPropertySymbols(o: any): symbol[];
465
+ is(value1: any, value2: any): boolean;
466
+ setPrototypeOf(o: any, proto: object | null): any;
467
+ values<T>(o: {
468
+ [s: string]: T;
469
+ } | ArrayLike<T>): T[];
470
+ values(o: {}): any[];
471
+ entries<T>(o: {
472
+ [s: string]: T;
473
+ } | ArrayLike<T>): [string, T][];
474
+ entries(o: {}): [string, any][];
475
+ getOwnPropertyDescriptors<T>(o: T): { [P in keyof T]: TypedPropertyDescriptor<T[P]>; } & {
476
+ [x: string]: PropertyDescriptor;
477
+ };
478
+ fromEntries<T = any>(entries: Iterable<readonly [PropertyKey, T]>): {
479
+ [k: string]: T;
480
+ };
481
+ fromEntries(entries: Iterable<readonly any[]>): any;
482
+ hasOwn(o: object, v: PropertyKey): boolean;
483
+ groupBy<K extends PropertyKey, T>(items: Iterable<T>, keySelector: (item: T, index: number) => K): Partial<Record<K, T[]>>;
484
+ };
485
+ }
486
+
487
+ declare namespace $ {
488
+ const $mol_schema_negative_base: {
489
+ new (value?: any): {
490
+ constructor: Function;
491
+ toString(): string;
492
+ toLocaleString(): string;
493
+ valueOf(): Object;
494
+ hasOwnProperty(v: PropertyKey): boolean;
495
+ isPrototypeOf(v: Object): boolean;
496
+ propertyIsEnumerable(v: PropertyKey): boolean;
497
+ };
498
+ Min: number;
499
+ Max: 0;
500
+ toString(): string;
501
+ guard<Value>(value: Value): (Value & (number | bigint)) & {
502
+ [x: `$mol_schema_range_min=${number}`]: true;
503
+ } & {
504
+ "$mol_schema_range_max=0": true;
505
+ };
506
+ cast(val: number | bigint): number | bigint;
507
+ default: Value & { [key in `$mol_schema_range_min=${Min}`]: true; } & { [key in `$mol_schema_range_max=${Max}`]: true; };
508
+ check<Val>(val: Val): val is Val & typeof this.default;
509
+ [Symbol.toStringTag]: string;
510
+ [$mol_key_handle](): string;
511
+ getPrototypeOf(o: any): any;
512
+ getOwnPropertyDescriptor(o: any, p: PropertyKey): PropertyDescriptor | undefined;
513
+ getOwnPropertyNames(o: any): string[];
514
+ create(o: object | null): any;
515
+ create(o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
516
+ defineProperty<T>(o: T, p: PropertyKey, attributes: PropertyDescriptor & ThisType<any>): T;
517
+ defineProperties<T>(o: T, properties: PropertyDescriptorMap & ThisType<any>): T;
518
+ seal<T>(o: T): T;
519
+ freeze<T extends Function>(f: T): T;
520
+ freeze<T extends {
521
+ [idx: string]: U | null | undefined | object;
522
+ }, U extends string | bigint | number | boolean | symbol>(o: T): Readonly<T>;
523
+ freeze<T>(o: T): Readonly<T>;
524
+ preventExtensions<T>(o: T): T;
525
+ isSealed(o: any): boolean;
526
+ isFrozen(o: any): boolean;
527
+ isExtensible(o: any): boolean;
528
+ keys(o: object): string[];
529
+ keys(o: {}): string[];
530
+ assign<T extends {}, U>(target: T, source: U): T & U;
531
+ assign<T extends {}, U, V>(target: T, source1: U, source2: V): T & U & V;
532
+ assign<T extends {}, U, V, W>(target: T, source1: U, source2: V, source3: W): T & U & V & W;
533
+ assign(target: object, ...sources: any[]): any;
534
+ getOwnPropertySymbols(o: any): symbol[];
535
+ is(value1: any, value2: any): boolean;
536
+ setPrototypeOf(o: any, proto: object | null): any;
537
+ values<T>(o: {
538
+ [s: string]: T;
539
+ } | ArrayLike<T>): T[];
540
+ values(o: {}): any[];
541
+ entries<T>(o: {
542
+ [s: string]: T;
543
+ } | ArrayLike<T>): [string, T][];
544
+ entries(o: {}): [string, any][];
545
+ getOwnPropertyDescriptors<T>(o: T): { [P in keyof T]: TypedPropertyDescriptor<T[P]>; } & {
546
+ [x: string]: PropertyDescriptor;
547
+ };
548
+ fromEntries<T = any>(entries: Iterable<readonly [PropertyKey, T]>): {
549
+ [k: string]: T;
550
+ };
551
+ fromEntries(entries: Iterable<readonly any[]>): any;
552
+ hasOwn(o: object, v: PropertyKey): boolean;
553
+ groupBy<K extends PropertyKey, T>(items: Iterable<T>, keySelector: (item: T, index: number) => K): Partial<Record<K, T[]>>;
554
+ };
555
+ export abstract class $mol_schema_negative extends $mol_schema_negative_base {
556
+ }
557
+ export {};
558
+ }
559
+
560
+ declare namespace $ {
561
+ function $mol_schema_some<Variants extends readonly (typeof $mol_schema_any)[]>(Variants: Variants): {
562
+ new (value?: any): {
563
+ constructor: Function;
564
+ toString(): string;
565
+ toLocaleString(): string;
566
+ valueOf(): Object;
567
+ hasOwnProperty(v: PropertyKey): boolean;
568
+ isPrototypeOf(v: Object): boolean;
569
+ propertyIsEnumerable(v: PropertyKey): boolean;
570
+ };
571
+ Variants: Variants;
572
+ toString(): string;
573
+ guard<Value>(value: Value): Value & Variants[number]["default"];
574
+ cast(value: unknown): Variants[number]["default"];
575
+ default: Variants[number]["default"];
576
+ check<Val>(val: Val): val is Val & typeof this.default;
577
+ [Symbol.toStringTag]: string;
578
+ [$mol_key_handle](): string;
579
+ getPrototypeOf(o: any): any;
580
+ getOwnPropertyDescriptor(o: any, p: PropertyKey): PropertyDescriptor | undefined;
581
+ getOwnPropertyNames(o: any): string[];
582
+ create(o: object | null): any;
583
+ create(o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
584
+ defineProperty<T>(o: T, p: PropertyKey, attributes: PropertyDescriptor & ThisType<any>): T;
585
+ defineProperties<T>(o: T, properties: PropertyDescriptorMap & ThisType<any>): T;
586
+ seal<T>(o: T): T;
587
+ freeze<T extends Function>(f: T): T;
588
+ freeze<T extends {
589
+ [idx: string]: U | null | undefined | object;
590
+ }, U extends string | bigint | number | boolean | symbol>(o: T): Readonly<T>;
591
+ freeze<T>(o: T): Readonly<T>;
592
+ preventExtensions<T>(o: T): T;
593
+ isSealed(o: any): boolean;
594
+ isFrozen(o: any): boolean;
595
+ isExtensible(o: any): boolean;
596
+ keys(o: object): string[];
597
+ keys(o: {}): string[];
598
+ assign<T extends {}, U>(target: T, source: U): T & U;
599
+ assign<T extends {}, U, V>(target: T, source1: U, source2: V): T & U & V;
600
+ assign<T extends {}, U, V, W>(target: T, source1: U, source2: V, source3: W): T & U & V & W;
601
+ assign(target: object, ...sources: any[]): any;
602
+ getOwnPropertySymbols(o: any): symbol[];
603
+ is(value1: any, value2: any): boolean;
604
+ setPrototypeOf(o: any, proto: object | null): any;
605
+ values<T>(o: {
606
+ [s: string]: T;
607
+ } | ArrayLike<T>): T[];
608
+ values(o: {}): any[];
609
+ entries<T>(o: {
610
+ [s: string]: T;
611
+ } | ArrayLike<T>): [string, T][];
612
+ entries(o: {}): [string, any][];
613
+ getOwnPropertyDescriptors<T>(o: T): { [P in keyof T]: TypedPropertyDescriptor<T[P]>; } & {
614
+ [x: string]: PropertyDescriptor;
615
+ };
616
+ fromEntries<T = any>(entries: Iterable<readonly [PropertyKey, T]>): {
617
+ [k: string]: T;
618
+ };
619
+ fromEntries(entries: Iterable<readonly any[]>): any;
620
+ hasOwn(o: object, v: PropertyKey): boolean;
621
+ groupBy<K extends PropertyKey, T>(items: Iterable<T>, keySelector: (item: T, index: number) => K): Partial<Record<K, T[]>>;
622
+ };
623
+ }
624
+
625
+ declare namespace $ {
626
+ function $mol_schema_maybe<Some extends typeof $mol_schema_any>(Some: Some): {
627
+ new (value?: any): {
628
+ constructor: Function;
629
+ toString(): string;
630
+ toLocaleString(): string;
631
+ valueOf(): Object;
632
+ hasOwnProperty(v: PropertyKey): boolean;
633
+ isPrototypeOf(v: Object): boolean;
634
+ propertyIsEnumerable(v: PropertyKey): boolean;
635
+ };
636
+ Some: Some;
637
+ toString(): string;
638
+ Variants: (Some | {
639
+ new (value?: any): {
640
+ constructor: Function;
641
+ toString(): string;
642
+ toLocaleString(): string;
643
+ valueOf(): Object;
644
+ hasOwnProperty(v: PropertyKey): boolean;
645
+ isPrototypeOf(v: Object): boolean;
646
+ propertyIsEnumerable(v: PropertyKey): boolean;
647
+ };
648
+ Options: (null | undefined)[];
649
+ toString(): string;
650
+ guard<Value>(value: Value): Value & (null | undefined);
651
+ cast(val: unknown): unknown;
652
+ default: Options[number];
653
+ check<Val>(val: Val): val is Val & typeof this.default;
654
+ [Symbol.toStringTag]: string;
655
+ [$mol_key_handle](): string;
656
+ getPrototypeOf(o: any): any;
657
+ getOwnPropertyDescriptor(o: any, p: PropertyKey): PropertyDescriptor | undefined;
658
+ getOwnPropertyNames(o: any): string[];
659
+ create(o: object | null): any;
660
+ create(o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
661
+ defineProperty<T>(o: T, p: PropertyKey, attributes: PropertyDescriptor & ThisType<any>): T;
662
+ defineProperties<T>(o: T, properties: PropertyDescriptorMap & ThisType<any>): T;
663
+ seal<T>(o: T): T;
664
+ freeze<T extends Function>(f: T): T;
665
+ freeze<T extends {
666
+ [idx: string]: U | null | undefined | object;
667
+ }, U extends string | bigint | number | boolean | symbol>(o: T): Readonly<T>;
668
+ freeze<T>(o: T): Readonly<T>;
669
+ preventExtensions<T>(o: T): T;
670
+ isSealed(o: any): boolean;
671
+ isFrozen(o: any): boolean;
672
+ isExtensible(o: any): boolean;
673
+ keys(o: object): string[];
674
+ keys(o: {}): string[];
675
+ assign<T extends {}, U>(target: T, source: U): T & U;
676
+ assign<T extends {}, U, V>(target: T, source1: U, source2: V): T & U & V;
677
+ assign<T extends {}, U, V, W>(target: T, source1: U, source2: V, source3: W): T & U & V & W;
678
+ assign(target: object, ...sources: any[]): any;
679
+ getOwnPropertySymbols(o: any): symbol[];
680
+ is(value1: any, value2: any): boolean;
681
+ setPrototypeOf(o: any, proto: object | null): any;
682
+ values<T>(o: {
683
+ [s: string]: T;
684
+ } | ArrayLike<T>): T[];
685
+ values(o: {}): any[];
686
+ entries<T>(o: {
687
+ [s: string]: T;
688
+ } | ArrayLike<T>): [string, T][];
689
+ entries(o: {}): [string, any][];
690
+ getOwnPropertyDescriptors<T>(o: T): { [P in keyof T]: TypedPropertyDescriptor<T[P]>; } & {
691
+ [x: string]: PropertyDescriptor;
692
+ };
693
+ fromEntries<T = any>(entries: Iterable<readonly [PropertyKey, T]>): {
694
+ [k: string]: T;
695
+ };
696
+ fromEntries(entries: Iterable<readonly any[]>): any;
697
+ hasOwn(o: object, v: PropertyKey): boolean;
698
+ groupBy<K extends PropertyKey, T>(items: Iterable<T>, keySelector: (item: T, index: number) => K): Partial<Record<K, T[]>>;
699
+ })[];
700
+ guard<Value>(value: Value): Value & (Some | {
701
+ new (value?: any): {
702
+ constructor: Function;
703
+ toString(): string;
704
+ toLocaleString(): string;
705
+ valueOf(): Object;
706
+ hasOwnProperty(v: PropertyKey): boolean;
707
+ isPrototypeOf(v: Object): boolean;
708
+ propertyIsEnumerable(v: PropertyKey): boolean;
709
+ };
710
+ Options: (null | undefined)[];
711
+ toString(): string;
712
+ guard<Value_1>(value: Value_1): Value_1 & (null | undefined);
713
+ cast(val: unknown): unknown;
714
+ default: Options[number];
715
+ check<Val>(val: Val): val is Val & typeof this.default;
716
+ [Symbol.toStringTag]: string;
717
+ [$mol_key_handle](): string;
718
+ getPrototypeOf(o: any): any;
719
+ getOwnPropertyDescriptor(o: any, p: PropertyKey): PropertyDescriptor | undefined;
720
+ getOwnPropertyNames(o: any): string[];
721
+ create(o: object | null): any;
722
+ create(o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
723
+ defineProperty<T>(o: T, p: PropertyKey, attributes: PropertyDescriptor & ThisType<any>): T;
724
+ defineProperties<T>(o: T, properties: PropertyDescriptorMap & ThisType<any>): T;
725
+ seal<T>(o: T): T;
726
+ freeze<T extends Function>(f: T): T;
727
+ freeze<T extends {
728
+ [idx: string]: U | null | undefined | object;
729
+ }, U extends string | bigint | number | boolean | symbol>(o: T): Readonly<T>;
730
+ freeze<T>(o: T): Readonly<T>;
731
+ preventExtensions<T>(o: T): T;
732
+ isSealed(o: any): boolean;
733
+ isFrozen(o: any): boolean;
734
+ isExtensible(o: any): boolean;
735
+ keys(o: object): string[];
736
+ keys(o: {}): string[];
737
+ assign<T extends {}, U_1>(target: T, source: U_1): T & U_1;
738
+ assign<T extends {}, U_2, V>(target: T, source1: U_2, source2: V): T & U_2 & V;
739
+ assign<T extends {}, U_3, V_1, W>(target: T, source1: U_3, source2: V_1, source3: W): T & U_3 & V_1 & W;
740
+ assign(target: object, ...sources: any[]): any;
741
+ getOwnPropertySymbols(o: any): symbol[];
742
+ is(value1: any, value2: any): boolean;
743
+ setPrototypeOf(o: any, proto: object | null): any;
744
+ values<T>(o: {
745
+ [s: string]: T;
746
+ } | ArrayLike<T>): T[];
747
+ values(o: {}): any[];
748
+ entries<T>(o: {
749
+ [s: string]: T;
750
+ } | ArrayLike<T>): [string, T][];
751
+ entries(o: {}): [string, any][];
752
+ getOwnPropertyDescriptors<T>(o: T): { [P in keyof T]: TypedPropertyDescriptor<T[P]>; } & {
753
+ [x: string]: PropertyDescriptor;
754
+ };
755
+ fromEntries<T = any>(entries: Iterable<readonly [PropertyKey, T]>): {
756
+ [k: string]: T;
757
+ };
758
+ fromEntries(entries: Iterable<readonly any[]>): any;
759
+ hasOwn(o: object, v: PropertyKey): boolean;
760
+ groupBy<K extends PropertyKey, T>(items: Iterable<T>, keySelector: (item: T, index: number) => K): Partial<Record<K, T[]>>;
761
+ })["default"];
762
+ cast(value: unknown): (Some | {
763
+ new (value?: any): {
764
+ constructor: Function;
765
+ toString(): string;
766
+ toLocaleString(): string;
767
+ valueOf(): Object;
768
+ hasOwnProperty(v: PropertyKey): boolean;
769
+ isPrototypeOf(v: Object): boolean;
770
+ propertyIsEnumerable(v: PropertyKey): boolean;
771
+ };
772
+ Options: (null | undefined)[];
773
+ toString(): string;
774
+ guard<Value>(value: Value): Value & (null | undefined);
775
+ cast(val: unknown): unknown;
776
+ default: Options[number];
777
+ check<Val>(val: Val): val is Val & typeof this.default;
778
+ [Symbol.toStringTag]: string;
779
+ [$mol_key_handle](): string;
780
+ getPrototypeOf(o: any): any;
781
+ getOwnPropertyDescriptor(o: any, p: PropertyKey): PropertyDescriptor | undefined;
782
+ getOwnPropertyNames(o: any): string[];
783
+ create(o: object | null): any;
784
+ create(o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
785
+ defineProperty<T>(o: T, p: PropertyKey, attributes: PropertyDescriptor & ThisType<any>): T;
786
+ defineProperties<T>(o: T, properties: PropertyDescriptorMap & ThisType<any>): T;
787
+ seal<T>(o: T): T;
788
+ freeze<T extends Function>(f: T): T;
789
+ freeze<T extends {
790
+ [idx: string]: U | null | undefined | object;
791
+ }, U extends string | bigint | number | boolean | symbol>(o: T): Readonly<T>;
792
+ freeze<T>(o: T): Readonly<T>;
793
+ preventExtensions<T>(o: T): T;
794
+ isSealed(o: any): boolean;
795
+ isFrozen(o: any): boolean;
796
+ isExtensible(o: any): boolean;
797
+ keys(o: object): string[];
798
+ keys(o: {}): string[];
799
+ assign<T extends {}, U>(target: T, source: U): T & U;
800
+ assign<T extends {}, U, V>(target: T, source1: U, source2: V): T & U & V;
801
+ assign<T extends {}, U, V, W>(target: T, source1: U, source2: V, source3: W): T & U & V & W;
802
+ assign(target: object, ...sources: any[]): any;
803
+ getOwnPropertySymbols(o: any): symbol[];
804
+ is(value1: any, value2: any): boolean;
805
+ setPrototypeOf(o: any, proto: object | null): any;
806
+ values<T>(o: {
807
+ [s: string]: T;
808
+ } | ArrayLike<T>): T[];
809
+ values(o: {}): any[];
810
+ entries<T>(o: {
811
+ [s: string]: T;
812
+ } | ArrayLike<T>): [string, T][];
813
+ entries(o: {}): [string, any][];
814
+ getOwnPropertyDescriptors<T>(o: T): { [P in keyof T]: TypedPropertyDescriptor<T[P]>; } & {
815
+ [x: string]: PropertyDescriptor;
816
+ };
817
+ fromEntries<T = any>(entries: Iterable<readonly [PropertyKey, T]>): {
818
+ [k: string]: T;
819
+ };
820
+ fromEntries(entries: Iterable<readonly any[]>): any;
821
+ hasOwn(o: object, v: PropertyKey): boolean;
822
+ groupBy<K extends PropertyKey, T>(items: Iterable<T>, keySelector: (item: T, index: number) => K): Partial<Record<K, T[]>>;
823
+ })["default"];
824
+ default: Variants[number]["default"];
825
+ check<Val>(val: Val): val is Val & typeof this.default;
826
+ [Symbol.toStringTag]: string;
827
+ [$mol_key_handle](): string;
828
+ getPrototypeOf(o: any): any;
829
+ getOwnPropertyDescriptor(o: any, p: PropertyKey): PropertyDescriptor | undefined;
830
+ getOwnPropertyNames(o: any): string[];
831
+ create(o: object | null): any;
832
+ create(o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
833
+ defineProperty<T>(o: T, p: PropertyKey, attributes: PropertyDescriptor & ThisType<any>): T;
834
+ defineProperties<T>(o: T, properties: PropertyDescriptorMap & ThisType<any>): T;
835
+ seal<T>(o: T): T;
836
+ freeze<T extends Function>(f: T): T;
837
+ freeze<T extends {
838
+ [idx: string]: U | null | undefined | object;
839
+ }, U extends string | bigint | number | boolean | symbol>(o: T): Readonly<T>;
840
+ freeze<T>(o: T): Readonly<T>;
841
+ preventExtensions<T>(o: T): T;
842
+ isSealed(o: any): boolean;
843
+ isFrozen(o: any): boolean;
844
+ isExtensible(o: any): boolean;
845
+ keys(o: object): string[];
846
+ keys(o: {}): string[];
847
+ assign<T extends {}, U>(target: T, source: U): T & U;
848
+ assign<T extends {}, U, V>(target: T, source1: U, source2: V): T & U & V;
849
+ assign<T extends {}, U, V, W>(target: T, source1: U, source2: V, source3: W): T & U & V & W;
850
+ assign(target: object, ...sources: any[]): any;
851
+ getOwnPropertySymbols(o: any): symbol[];
852
+ is(value1: any, value2: any): boolean;
853
+ setPrototypeOf(o: any, proto: object | null): any;
854
+ values<T>(o: {
855
+ [s: string]: T;
856
+ } | ArrayLike<T>): T[];
857
+ values(o: {}): any[];
858
+ entries<T>(o: {
859
+ [s: string]: T;
860
+ } | ArrayLike<T>): [string, T][];
861
+ entries(o: {}): [string, any][];
862
+ getOwnPropertyDescriptors<T>(o: T): { [P in keyof T]: TypedPropertyDescriptor<T[P]>; } & {
863
+ [x: string]: PropertyDescriptor;
864
+ };
865
+ fromEntries<T = any>(entries: Iterable<readonly [PropertyKey, T]>): {
866
+ [k: string]: T;
867
+ };
868
+ fromEntries(entries: Iterable<readonly any[]>): any;
869
+ hasOwn(o: object, v: PropertyKey): boolean;
870
+ groupBy<K extends PropertyKey, T>(items: Iterable<T>, keySelector: (item: T, index: number) => K): Partial<Record<K, T[]>>;
871
+ };
872
+ }
873
+
874
+ declare namespace $ {
875
+ function $mol_schema_list<Item extends typeof $mol_schema_any>(Item: Item): {
876
+ new (value?: any): {
877
+ constructor: Function;
878
+ toString(): string;
879
+ toLocaleString(): string;
880
+ valueOf(): Object;
881
+ hasOwnProperty(v: PropertyKey): boolean;
882
+ isPrototypeOf(v: Object): boolean;
883
+ propertyIsEnumerable(v: PropertyKey): boolean;
884
+ };
885
+ Item: Item;
886
+ toString(): string;
887
+ guard<Value>(value: Value): Value & readonly unknown[];
888
+ cast(value: unknown): readonly unknown[];
889
+ default: readonly (typeof Item.default)[];
890
+ check<Val>(val: Val): val is Val & typeof this.default;
891
+ [Symbol.toStringTag]: string;
892
+ [$mol_key_handle](): string;
893
+ getPrototypeOf(o: any): any;
894
+ getOwnPropertyDescriptor(o: any, p: PropertyKey): PropertyDescriptor | undefined;
895
+ getOwnPropertyNames(o: any): string[];
896
+ create(o: object | null): any;
897
+ create(o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
898
+ defineProperty<T>(o: T, p: PropertyKey, attributes: PropertyDescriptor & ThisType<any>): T;
899
+ defineProperties<T>(o: T, properties: PropertyDescriptorMap & ThisType<any>): T;
900
+ seal<T>(o: T): T;
901
+ freeze<T extends Function>(f: T): T;
902
+ freeze<T extends {
903
+ [idx: string]: U | null | undefined | object;
904
+ }, U extends string | bigint | number | boolean | symbol>(o: T): Readonly<T>;
905
+ freeze<T>(o: T): Readonly<T>;
906
+ preventExtensions<T>(o: T): T;
907
+ isSealed(o: any): boolean;
908
+ isFrozen(o: any): boolean;
909
+ isExtensible(o: any): boolean;
910
+ keys(o: object): string[];
911
+ keys(o: {}): string[];
912
+ assign<T extends {}, U>(target: T, source: U): T & U;
913
+ assign<T extends {}, U, V>(target: T, source1: U, source2: V): T & U & V;
914
+ assign<T extends {}, U, V, W>(target: T, source1: U, source2: V, source3: W): T & U & V & W;
915
+ assign(target: object, ...sources: any[]): any;
916
+ getOwnPropertySymbols(o: any): symbol[];
917
+ is(value1: any, value2: any): boolean;
918
+ setPrototypeOf(o: any, proto: object | null): any;
919
+ values<T>(o: {
920
+ [s: string]: T;
921
+ } | ArrayLike<T>): T[];
922
+ values(o: {}): any[];
923
+ entries<T>(o: {
924
+ [s: string]: T;
925
+ } | ArrayLike<T>): [string, T][];
926
+ entries(o: {}): [string, any][];
927
+ getOwnPropertyDescriptors<T>(o: T): { [P in keyof T]: TypedPropertyDescriptor<T[P]>; } & {
928
+ [x: string]: PropertyDescriptor;
929
+ };
930
+ fromEntries<T = any>(entries: Iterable<readonly [PropertyKey, T]>): {
931
+ [k: string]: T;
932
+ };
933
+ fromEntries(entries: Iterable<readonly any[]>): any;
934
+ hasOwn(o: object, v: PropertyKey): boolean;
935
+ groupBy<K extends PropertyKey, T>(items: Iterable<T>, keySelector: (item: T, index: number) => K): Partial<Record<K, T[]>>;
936
+ };
937
+ }
938
+
939
+ declare namespace $ {
940
+ function $mol_schema_dict<Key extends typeof $mol_schema_any & {
941
+ default: PropertyKey;
942
+ }, Val extends typeof $mol_schema_any>(Key: Key, Val: Val): {
943
+ new (value?: any): {
944
+ constructor: Function;
945
+ toString(): string;
946
+ toLocaleString(): string;
947
+ valueOf(): Object;
948
+ hasOwnProperty(v: PropertyKey): boolean;
949
+ isPrototypeOf(v: Object): boolean;
950
+ propertyIsEnumerable(v: PropertyKey): boolean;
951
+ };
952
+ Key: Key;
953
+ Val: Val;
954
+ toString(): string;
955
+ guard<Value>(value: Value): Value & Record<Key["default"], Val["default"]>;
956
+ cast(value: unknown): Record<Key["default"], Val["default"]>;
957
+ default: Record<Key["default"], Val["default"]>;
958
+ check<Val_1>(val: Val_1): val is Val_1 & typeof this.default;
959
+ [Symbol.toStringTag]: string;
960
+ [$mol_key_handle](): string;
961
+ getPrototypeOf(o: any): any;
962
+ getOwnPropertyDescriptor(o: any, p: PropertyKey): PropertyDescriptor | undefined;
963
+ getOwnPropertyNames(o: any): string[];
964
+ create(o: object | null): any;
965
+ create(o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
966
+ defineProperty<T>(o: T, p: PropertyKey, attributes: PropertyDescriptor & ThisType<any>): T;
967
+ defineProperties<T>(o: T, properties: PropertyDescriptorMap & ThisType<any>): T;
968
+ seal<T>(o: T): T;
969
+ freeze<T extends Function>(f: T): T;
970
+ freeze<T extends {
971
+ [idx: string]: U | null | undefined | object;
972
+ }, U extends string | bigint | number | boolean | symbol>(o: T): Readonly<T>;
973
+ freeze<T>(o: T): Readonly<T>;
974
+ preventExtensions<T>(o: T): T;
975
+ isSealed(o: any): boolean;
976
+ isFrozen(o: any): boolean;
977
+ isExtensible(o: any): boolean;
978
+ keys(o: object): string[];
979
+ keys(o: {}): string[];
980
+ assign<T extends {}, U>(target: T, source: U): T & U;
981
+ assign<T extends {}, U, V>(target: T, source1: U, source2: V): T & U & V;
982
+ assign<T extends {}, U, V, W>(target: T, source1: U, source2: V, source3: W): T & U & V & W;
983
+ assign(target: object, ...sources: any[]): any;
984
+ getOwnPropertySymbols(o: any): symbol[];
985
+ is(value1: any, value2: any): boolean;
986
+ setPrototypeOf(o: any, proto: object | null): any;
987
+ values<T>(o: {
988
+ [s: string]: T;
989
+ } | ArrayLike<T>): T[];
990
+ values(o: {}): any[];
991
+ entries<T>(o: {
992
+ [s: string]: T;
993
+ } | ArrayLike<T>): [string, T][];
994
+ entries(o: {}): [string, any][];
995
+ getOwnPropertyDescriptors<T>(o: T): { [P in keyof T]: TypedPropertyDescriptor<T[P]>; } & {
996
+ [x: string]: PropertyDescriptor;
997
+ };
998
+ fromEntries<T = any>(entries: Iterable<readonly [PropertyKey, T]>): {
999
+ [k: string]: T;
1000
+ };
1001
+ fromEntries(entries: Iterable<readonly any[]>): any;
1002
+ hasOwn(o: object, v: PropertyKey): boolean;
1003
+ groupBy<K extends PropertyKey, T>(items: Iterable<T>, keySelector: (item: T, index: number) => K): Partial<Record<K, T[]>>;
1004
+ };
1005
+ }
1006
+
1007
+ declare namespace $ {
1008
+ function $mol_schema_record<Fields extends Record<string, typeof $mol_schema_any>>(Fields: Fields): {
1009
+ new (value?: any): {
1010
+ constructor: Function;
1011
+ toString(): string;
1012
+ toLocaleString(): string;
1013
+ valueOf(): Object;
1014
+ hasOwnProperty(v: PropertyKey): boolean;
1015
+ isPrototypeOf(v: Object): boolean;
1016
+ propertyIsEnumerable(v: PropertyKey): boolean;
1017
+ };
1018
+ Fields: Fields;
1019
+ toString(): string;
1020
+ guard<Value>(value: Value): Value & { readonly [key in keyof Fields]: Fields[key]["default"]; };
1021
+ cast(value: unknown): { readonly [key in keyof Fields]: Fields[key]["default"]; };
1022
+ default: { readonly [key in keyof typeof Fields]: (typeof Fields)[key]["default"]; };
1023
+ check<Val>(val: Val): val is Val & typeof this.default;
1024
+ [Symbol.toStringTag]: string;
1025
+ [$mol_key_handle](): string;
1026
+ getPrototypeOf(o: any): any;
1027
+ getOwnPropertyDescriptor(o: any, p: PropertyKey): PropertyDescriptor | undefined;
1028
+ getOwnPropertyNames(o: any): string[];
1029
+ create(o: object | null): any;
1030
+ create(o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
1031
+ defineProperty<T>(o: T, p: PropertyKey, attributes: PropertyDescriptor & ThisType<any>): T;
1032
+ defineProperties<T>(o: T, properties: PropertyDescriptorMap & ThisType<any>): T;
1033
+ seal<T>(o: T): T;
1034
+ freeze<T extends Function>(f: T): T;
1035
+ freeze<T extends {
1036
+ [idx: string]: U | null | undefined | object;
1037
+ }, U extends string | bigint | number | boolean | symbol>(o: T): Readonly<T>;
1038
+ freeze<T>(o: T): Readonly<T>;
1039
+ preventExtensions<T>(o: T): T;
1040
+ isSealed(o: any): boolean;
1041
+ isFrozen(o: any): boolean;
1042
+ isExtensible(o: any): boolean;
1043
+ keys(o: object): string[];
1044
+ keys(o: {}): string[];
1045
+ assign<T extends {}, U>(target: T, source: U): T & U;
1046
+ assign<T extends {}, U, V>(target: T, source1: U, source2: V): T & U & V;
1047
+ assign<T extends {}, U, V, W>(target: T, source1: U, source2: V, source3: W): T & U & V & W;
1048
+ assign(target: object, ...sources: any[]): any;
1049
+ getOwnPropertySymbols(o: any): symbol[];
1050
+ is(value1: any, value2: any): boolean;
1051
+ setPrototypeOf(o: any, proto: object | null): any;
1052
+ values<T>(o: {
1053
+ [s: string]: T;
1054
+ } | ArrayLike<T>): T[];
1055
+ values(o: {}): any[];
1056
+ entries<T>(o: {
1057
+ [s: string]: T;
1058
+ } | ArrayLike<T>): [string, T][];
1059
+ entries(o: {}): [string, any][];
1060
+ getOwnPropertyDescriptors<T>(o: T): { [P in keyof T]: TypedPropertyDescriptor<T[P]>; } & {
1061
+ [x: string]: PropertyDescriptor;
1062
+ };
1063
+ fromEntries<T = any>(entries: Iterable<readonly [PropertyKey, T]>): {
1064
+ [k: string]: T;
1065
+ };
1066
+ fromEntries(entries: Iterable<readonly any[]>): any;
1067
+ hasOwn(o: object, v: PropertyKey): boolean;
1068
+ groupBy<K extends PropertyKey, T>(items: Iterable<T>, keySelector: (item: T, index: number) => K): Partial<Record<K, T[]>>;
1069
+ };
1070
+ }
1071
+
1072
+ declare namespace $ {
1073
+ function $mol_schema_partial<Fields extends Record<string, typeof $mol_schema_any>>(Fields: Fields): {
1074
+ new (value?: any): {
1075
+ constructor: Function;
1076
+ toString(): string;
1077
+ toLocaleString(): string;
1078
+ valueOf(): Object;
1079
+ hasOwnProperty(v: PropertyKey): boolean;
1080
+ isPrototypeOf(v: Object): boolean;
1081
+ propertyIsEnumerable(v: PropertyKey): boolean;
1082
+ };
1083
+ Fields: Fields;
1084
+ toString(): string;
1085
+ guard<Value>(value: Value): Value & {
1086
+ readonly [x: string]: any;
1087
+ };
1088
+ cast(value: unknown): {
1089
+ readonly [x: string]: any;
1090
+ };
1091
+ default: { readonly [key in keyof typeof Fields_1]: (typeof Fields_1)[key]["default"]; };
1092
+ check<Val>(val: Val): val is Val & typeof this.default;
1093
+ [Symbol.toStringTag]: string;
1094
+ [$mol_key_handle](): string;
1095
+ getPrototypeOf(o: any): any;
1096
+ getOwnPropertyDescriptor(o: any, p: PropertyKey): PropertyDescriptor | undefined;
1097
+ getOwnPropertyNames(o: any): string[];
1098
+ create(o: object | null): any;
1099
+ create(o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
1100
+ defineProperty<T>(o: T, p: PropertyKey, attributes: PropertyDescriptor & ThisType<any>): T;
1101
+ defineProperties<T>(o: T, properties: PropertyDescriptorMap & ThisType<any>): T;
1102
+ seal<T>(o: T): T;
1103
+ freeze<T extends Function>(f: T): T;
1104
+ freeze<T extends {
1105
+ [idx: string]: U | null | undefined | object;
1106
+ }, U extends string | bigint | number | boolean | symbol>(o: T): Readonly<T>;
1107
+ freeze<T>(o: T): Readonly<T>;
1108
+ preventExtensions<T>(o: T): T;
1109
+ isSealed(o: any): boolean;
1110
+ isFrozen(o: any): boolean;
1111
+ isExtensible(o: any): boolean;
1112
+ keys(o: object): string[];
1113
+ keys(o: {}): string[];
1114
+ assign<T extends {}, U>(target: T, source: U): T & U;
1115
+ assign<T extends {}, U, V>(target: T, source1: U, source2: V): T & U & V;
1116
+ assign<T extends {}, U, V, W>(target: T, source1: U, source2: V, source3: W): T & U & V & W;
1117
+ assign(target: object, ...sources: any[]): any;
1118
+ getOwnPropertySymbols(o: any): symbol[];
1119
+ is(value1: any, value2: any): boolean;
1120
+ setPrototypeOf(o: any, proto: object | null): any;
1121
+ values<T>(o: {
1122
+ [s: string]: T;
1123
+ } | ArrayLike<T>): T[];
1124
+ values(o: {}): any[];
1125
+ entries<T>(o: {
1126
+ [s: string]: T;
1127
+ } | ArrayLike<T>): [string, T][];
1128
+ entries(o: {}): [string, any][];
1129
+ getOwnPropertyDescriptors<T>(o: T): { [P in keyof T]: TypedPropertyDescriptor<T[P]>; } & {
1130
+ [x: string]: PropertyDescriptor;
1131
+ };
1132
+ fromEntries<T = any>(entries: Iterable<readonly [PropertyKey, T]>): {
1133
+ [k: string]: T;
1134
+ };
1135
+ fromEntries(entries: Iterable<readonly any[]>): any;
1136
+ hasOwn(o: object, v: PropertyKey): boolean;
1137
+ groupBy<K extends PropertyKey, T>(items: Iterable<T>, keySelector: (item: T, index: number) => K): Partial<Record<K, T[]>>;
1138
+ };
1139
+ }
1
1140
 
2
1141
  export = $;
3
1142
  //# 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","../../../key/key.d.ts","../../../func/name/name.d.ts","../../any/any.d.ts","../../../fail/fail.d.ts","../../boolean/boolean.d.ts","../../string/string.d.ts","../../../guid/guid.d.ts","../../../key/key/key.d.ts","../../pattern/pattern.d.ts","../../float/float.d.ts","../../integer/integer.d.ts","../../../type/intersect/intersect.d.ts","../../every/every.d.ts","../../range/range.d.ts","../../positive/positive.d.ts","../../natural/natural.d.ts","../../enum/enum.d.ts","../../negative/negative.d.ts","../../some/some.d.ts","../../maybe/maybe.d.ts","../../list/list.d.ts","../../dict/dict.d.ts","../../record/record.d.ts","../../partial/partial.d.ts"],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACfA;AACA;AACA;AACA;AACA;ACJA;AACA;AACA;AACA;AACA;ACJA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACXA;AACA;AACA;AACA;ACHA;AACA;AACA;AACA;AACA;AACA;AACA;ACNA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACPA;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;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;AChEA;AACA;AACA;AACA;AACA;AACA;AACA;ACNA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACPA;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;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;AChEA;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;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;ACjEA;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;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;ACxEA;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;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;ACnEA;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;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;AChEA;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;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;ACxEA;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;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;AChEA;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;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;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;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;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;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;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACxPA;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;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;AChEA;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;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;ACnEA;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;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;AChEA;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;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","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]}