@es-joy/jsoe 0.23.0 → 0.24.0
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/CHANGES.md +8 -0
- package/README.md +1 -1
- package/dist/formatAndTypeChoices.d.ts +9 -2
- package/dist/formatAndTypeChoices.d.ts.map +1 -1
- package/dist/formats/arbitraryJS.d.ts +4 -0
- package/dist/formats/arbitraryJS.d.ts.map +1 -0
- package/dist/formats/schema.d.ts.map +1 -1
- package/dist/formats/structuredCloning.d.ts +1 -1
- package/dist/formats/structuredCloning.d.ts.map +1 -1
- package/dist/formats.d.ts +13 -10
- package/dist/formats.d.ts.map +1 -1
- package/dist/fundamentalTypes/functionType.d.ts +1 -0
- package/dist/fundamentalTypes/functionType.d.ts.map +1 -1
- package/dist/fundamentalTypes/promiseType.d.ts.map +1 -1
- package/dist/fundamentalTypes/stringType.d.ts.map +1 -1
- package/dist/fundamentalTypes/symbolType.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/subTypes/blobHTMLType.d.ts.map +1 -1
- package/dist/types.d.ts +33 -27
- package/dist/types.d.ts.map +1 -1
- package/dist/vendor-imports.d.ts +2 -1
- package/package.json +13 -14
- package/rollup.config.js +12 -0
- package/src/formatAndTypeChoices.js +32 -7
- package/src/formats/arbitraryJS.js +27 -0
- package/src/formats/indexedDBKey.js +1 -1
- package/src/formats/json.js +1 -1
- package/src/formats/schema.js +17 -13
- package/src/formats/structuredCloning.js +37 -8
- package/src/formats.js +15 -7
- package/src/fundamentalTypes/arrayReferenceType.js +1 -1
- package/src/fundamentalTypes/bigintObjectType.js +1 -1
- package/src/fundamentalTypes/bigintType.js +1 -1
- package/src/fundamentalTypes/functionType.js +237 -69
- package/src/fundamentalTypes/numberType.js +3 -3
- package/src/fundamentalTypes/objectReferenceType.js +1 -1
- package/src/fundamentalTypes/promiseType.js +144 -15
- package/src/fundamentalTypes/stringType.js +8 -7
- package/src/fundamentalTypes/symbolType.js +14 -6
- package/src/subTypes/blobHTMLType.js +3 -1
- package/src/types.js +31 -25
- package/src/vendor-imports.js +6 -1
- package/vendor/acorn/dist/acorn.d.mts +856 -0
- package/vendor/acorn/dist/acorn.d.ts +856 -0
- package/vendor/acorn/dist/acorn.js +6065 -0
- package/vendor/acorn/dist/acorn.mjs +6036 -0
- package/vendor/acorn/dist/bin.js +90 -0
- package/vendor/jamilih/dist/jml-es.js +9 -14
- package/vendor/typeson-registry/dist/index.js +70 -26
package/CHANGES.md
CHANGED
package/README.md
CHANGED
|
@@ -68,7 +68,7 @@ Zodex) schema types:
|
|
|
68
68
|
- `tuple`
|
|
69
69
|
- `void` (preferred in Zodex when specified as such)
|
|
70
70
|
|
|
71
|
-
|
|
71
|
+
And there are the following non-structured-cloning Zodex schema types:
|
|
72
72
|
|
|
73
73
|
- `function`
|
|
74
74
|
- `promise`
|
|
@@ -22,11 +22,14 @@
|
|
|
22
22
|
* will be set and required at the root level. This option will also
|
|
23
23
|
* prevent selection of indexedDB key at root (since a key cannot be a
|
|
24
24
|
* plain object).
|
|
25
|
+
* @param {boolean} [cfg.arbitraryJS] Whether to allow the choice of
|
|
26
|
+
* arbitrary JavaScript
|
|
25
27
|
* @param {string} [cfg.typeNamespace] Used to prevent conflicts with other
|
|
26
28
|
* instances of typeChoices on the page
|
|
27
29
|
* @param {string} [cfg.selectedSchema]
|
|
28
30
|
* @param {import('./formats.js').default} [cfg.formats]
|
|
29
31
|
* @param {import('./types.js').default} [cfg.types]
|
|
32
|
+
* @param {boolean} [cfg.preselectSchema]
|
|
30
33
|
* @returns {Promise<{
|
|
31
34
|
* formatChoices: FormatChoices,
|
|
32
35
|
* typesHolder: TypesHolder,
|
|
@@ -41,16 +44,18 @@
|
|
|
41
44
|
* }>} The selector for types and the container for them. Both should be
|
|
42
45
|
* added to the page.
|
|
43
46
|
*/
|
|
44
|
-
export function formatAndTypeChoices({ schemas, getSchemaContent, hasValue, singleValue, hasKeyPath, typeNamespace, selectedSchema, formats, types }: {
|
|
47
|
+
export function formatAndTypeChoices({ schemas, getSchemaContent, hasValue, singleValue, hasKeyPath, arbitraryJS, preselectSchema, typeNamespace, selectedSchema, formats, types }: {
|
|
45
48
|
schemas?: string[] | undefined;
|
|
46
49
|
getSchemaContent?: ((schema: string) => Promise<ZodexSchema>) | undefined;
|
|
47
50
|
hasValue?: boolean | undefined;
|
|
48
51
|
singleValue?: boolean | undefined;
|
|
49
52
|
hasKeyPath?: boolean | undefined;
|
|
53
|
+
arbitraryJS?: boolean | undefined;
|
|
50
54
|
typeNamespace?: string | undefined;
|
|
51
55
|
selectedSchema?: string | undefined;
|
|
52
56
|
formats?: Formats | undefined;
|
|
53
57
|
types?: Types | undefined;
|
|
58
|
+
preselectSchema?: boolean | undefined;
|
|
54
59
|
}): Promise<{
|
|
55
60
|
formatChoices: HTMLSelectElement & {
|
|
56
61
|
$setFormat: (this: HTMLSelectElement & {
|
|
@@ -88,10 +93,12 @@ export function formatAndTypeChoices({ schemas, getSchemaContent, hasValue, sing
|
|
|
88
93
|
formats: import("./formats.js").default;
|
|
89
94
|
types: import("./types.js").default;
|
|
90
95
|
}>;
|
|
91
|
-
export function getFormatAndSchemaChoices({ schemas, selectedSchema, hasKeyPath }?: {
|
|
96
|
+
export function getFormatAndSchemaChoices({ schemas, selectedSchema, hasKeyPath, preselectSchema, arbitraryJS }?: {
|
|
92
97
|
schemas?: string[] | undefined;
|
|
93
98
|
selectedSchema?: string | undefined;
|
|
94
99
|
hasKeyPath?: boolean | undefined;
|
|
100
|
+
arbitraryJS?: boolean | undefined;
|
|
101
|
+
preselectSchema?: boolean | undefined;
|
|
95
102
|
}): DocumentFragment;
|
|
96
103
|
export type SetValue = (value: import("./formats.js").StructuredCloneValue, stateObj: import("./types.js").StateObject) => Promise<void>;
|
|
97
104
|
export type ZodexSchema = import("./formats/schema.js").ZodexSchema;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"formatAndTypeChoices.d.ts","sourceRoot":"","sources":["../src/formatAndTypeChoices.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"formatAndTypeChoices.d.ts","sourceRoot":"","sources":["../src/formatAndTypeChoices.js"],"names":[],"mappings":"AAmEA;;;;;GAKG;AAEH;;GAEG;AAEH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoCG;AACH,oLAlCG;IAAuB,OAAO;IACyB,gBAAgB,aAAtD,MAAM,KAAK,OAAO,CAAC,WAAW,CAAC;IAE1B,QAAQ;IAGR,WAAW;IACX,UAAU;IAKV,WAAW;IAEZ,aAAa;IAEb,cAAc;IACU,OAAO;IACT,KAAK;IAC1B,eAAe;CACrC,GAAU,OAAO,CAAC;IACpB,aAAiB;;;;qDAyDC,OAAO,CAAC,IAAI,CAAC;gBAlBf;YACV,WAAe,CAAC,EAAE,OAAO,cAAc,EAAE,eAAe,CAAC;YACzD,WAAe,EAAE,OAAO,CAAC;YACzB,MAAU,CAAC,EAAE,MAAM,CAAA;SAChB,KAIS,OAAO,CAAC,IAAI,CAAC;;;iDAUb,OAAO,CAAC,IAAI,CAAC;MAzDE;IACjC,WAAe,iBAAc;IAC7B,QAAY,EAAE,CAAC,aAAa;;;;qDAuDV,OAAO,CAAC,IAAI,CAAC;gBAlBf;YACV,WAAe,CAAC,EAAE,OAAO,cAAc,EAAE,eAAe,CAAC;YACzD,WAAe,EAAE,OAAO,CAAC;YACzB,MAAU,CAAC,EAAE,MAAM,CAAA;SAChB,KAIS,OAAO,CAAC,IAAI,CAAC;;;iDAUb,OAAO,CAAC,IAAI,CAAC;KAvDY,EAAE,WAAW,gBAAa,CAAC,CAAC;IACvE,QAAY,EAAE,CAAC,QAAQ,EAAE,OAAO,YAAY,EAAE,WAAW,EACnD,WAAW,EAAE,MAAM,KAAK,OAAO,cAAc,EAAE,oBAAoB,CAAC;IAC1E,OAAW,EAAE,MAAM,MAAM,CAAC;IAC1B,cAAkB,EAAE,MAAM,OAAO,CAAC;IAClC,QAAY,EAAE,QAAQ,CAAC;IACvB,OAAW,EAAE,OAAO,cAAc,EAAE,OAAO,CAAC;IAC5C,KAAS,EAAE,OAAO,YAAY,EAAE,OAAO,CAAA;CACpC,CAAC,CAuPJ;AA9UM,kHAVJ;IAAuB,OAAO;IACT,cAAc;IACb,UAAU;IAGV,WAAW;IAEX,eAAe;CACrC,GAAU,gBAAgB,CA0C5B;+BAIU,OAAO,cAAc,EAAE,oBAAoB,YAC3C,OAAO,YAAY,EAAE,WAAW,KAC9B,OAAO,CAAC,IAAI,CAAC;0BAIb,OAAO,qBAAqB,EAAE,WAAW;mCAnEzC,cAAc,GAAC,IAAI;oBALZ,cAAc;kBADhB,YAAY"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"arbitraryJS.d.ts","sourceRoot":"","sources":["../../src/formats/arbitraryJS.js"],"names":[],"mappings":";AAEA,6CAA6C;AAC7C,2BADW,OAAO,eAAe,EAAE,MAAM,CAsBvC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../src/formats/schema.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../src/formats/schema.js"],"names":[],"mappings":"AA4MA;;;;GAIG;AACH,gDAJW,WAAW,gBACX,WAAW,GACT,GAAG,CAAC,WAAW,CAAC,CAiX5B;;0BAjgBY,OAAO,OAAO,EAAE,MAAM;2BAGtB,OAAO,qBAAqB,EAAE,YAAY;;;;oBAvD1C,CAAC,IADD,CAAC,CAAC,MAAM,CAAC,CAAC;iCAMV,OAAO,CAChB,IAAI,CAAC,OAAO,OAAO,EAAE,MAAM,EAAE,MAAM,CAAC,CACrC;AAgjBH,6CAA6C;AAC7C,sBADW,OAAO,eAAe,EAAE,MAAM,CA6MvC"}
|
|
@@ -5,7 +5,7 @@ export default structuredCloning;
|
|
|
5
5
|
*/
|
|
6
6
|
export type AddAndSetArrayElement = (info: {
|
|
7
7
|
propName: string;
|
|
8
|
-
type: import("../types.js").
|
|
8
|
+
type: import("../types.js").AvailableArbitraryType;
|
|
9
9
|
value: import("../formats.js").StructuredCloneValue;
|
|
10
10
|
bringIntoFocus?: boolean;
|
|
11
11
|
setAValue?: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"structuredCloning.d.ts","sourceRoot":"","sources":["../../src/formats/structuredCloning.js"],"names":[],"mappings":";;;;;oCAwBa,CAAC,IAAI,EAAE;IACnB,QAAY,EAAE,MAAM,CAAC;IACrB,IAAQ,EAAE,OAAO,aAAa,EAAE,
|
|
1
|
+
{"version":3,"file":"structuredCloning.d.ts","sourceRoot":"","sources":["../../src/formats/structuredCloning.js"],"names":[],"mappings":";;;;;oCAwBa,CAAC,IAAI,EAAE;IACnB,QAAY,EAAE,MAAM,CAAC;IACrB,IAAQ,EAAE,OAAO,aAAa,EAAE,sBAAsB,CAAC;IACvD,KAAS,EAAE,OAAO,eAAe,EAAE,oBAAoB,CAAC;IACxD,cAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,SAAa,CAAC,EAAE,OAAO,CAAC;IACxB,aAAiB,CAAC,EAAE,OAAO,sBAAsB,EAAE,WAAW,CAAC;IAC/D,cAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,SAAa,CAAC,EAAE,MAAM,CAAA;CACnB,KAAK,WAAW,GAAC,IAAI;kCAIZ,OAAO,kBAAkB,EAAE,mBAAmB;AAgc3D,6CAA6C;AAC7C,iCADW,OAAO,eAAe,EAAE,MAAM,CAqKvC"}
|
package/dist/formats.d.ts
CHANGED
|
@@ -4,9 +4,9 @@ export default Formats;
|
|
|
4
4
|
*/
|
|
5
5
|
export type StructuredCloneValue = any;
|
|
6
6
|
export type GetTypesAndSchemasForFormatAndState = (types: import("./types.js").default, format: AvailableFormat, state?: string | undefined, schemaObject?: import("./formatAndTypeChoices.js").ZodexSchema | undefined, schemaOriginal?: import("./formatAndTypeChoices.js").ZodexSchema | undefined) => TypesAndSchemaObjects | undefined;
|
|
7
|
-
export type AvailableFormat = "indexedDBKey" | "json" | "structuredCloning" | "schema";
|
|
7
|
+
export type AvailableFormat = "indexedDBKey" | "json" | "structuredCloning" | "arbitraryJS" | "schema";
|
|
8
8
|
export type TypesAndSchemaObjects = {
|
|
9
|
-
types: (import("./types.js").
|
|
9
|
+
types: (import("./types.js").AvailableArbitraryType)[];
|
|
10
10
|
schemaObjects: import("./formats/schema.js").ZodexSchema[];
|
|
11
11
|
};
|
|
12
12
|
/**
|
|
@@ -20,7 +20,7 @@ export type Format = {
|
|
|
20
20
|
* of types generally available to structured cloning. See
|
|
21
21
|
* {@link getTypesAndSchemasForState} for context-dependent method.
|
|
22
22
|
*/
|
|
23
|
-
types: () => (import("./types.js").
|
|
23
|
+
types: () => (import("./types.js").AvailableArbitraryType)[];
|
|
24
24
|
/**
|
|
25
25
|
* Traverses over data to build and return
|
|
26
26
|
* a relevant UI element.
|
|
@@ -32,8 +32,8 @@ export type Format = {
|
|
|
32
32
|
*/
|
|
33
33
|
getTypesAndSchemasForState: (types: import("./types.js").default, state?: string, schemaObject?: import("./formatAndTypeChoices.js").ZodexSchema | undefined, schemaOriginal?: import("./formatAndTypeChoices.js").ZodexSchema | undefined) => TypesAndSchemaObjects | undefined;
|
|
34
34
|
testInvalid?: ((newType: string, value: Date | Array<StructuredCloneValue>) => boolean | undefined) | undefined;
|
|
35
|
-
convertFromTypeson?: ((typesonType: import("./types.js").
|
|
36
|
-
type: import("./types.js").
|
|
35
|
+
convertFromTypeson?: ((typesonType: import("./types.js").AvailableArbitraryType, types: import("./types.js").default, v?: import("./formats.js").StructuredCloneValue, arrayOrObjectPropertyName?: string, parentSchema?: [import("zodex").SzType, number | undefined] | undefined, stateObj?: import("./types.js").StateObject) => {
|
|
36
|
+
type: import("./types.js").AvailableArbitraryType | undefined;
|
|
37
37
|
schema?: import("zodex").SzType | undefined;
|
|
38
38
|
mustBeOptional?: boolean;
|
|
39
39
|
schemaIdx?: number;
|
|
@@ -55,11 +55,12 @@ export type Format = {
|
|
|
55
55
|
* @returns {TypesAndSchemaObjects|undefined}
|
|
56
56
|
*/
|
|
57
57
|
/**
|
|
58
|
-
* @typedef {"indexedDBKey"|"json"|"structuredCloning"|
|
|
58
|
+
* @typedef {"indexedDBKey"|"json"|"structuredCloning"|
|
|
59
|
+
* "arbitraryJS"|"schema"} AvailableFormat
|
|
59
60
|
*/
|
|
60
61
|
/**
|
|
61
62
|
* @typedef {{
|
|
62
|
-
* types: (import('./types.js').
|
|
63
|
+
* types: (import('./types.js').AvailableArbitraryType)[],
|
|
63
64
|
* schemaObjects: import('./formats/schema.js').ZodexSchema[]
|
|
64
65
|
* }} TypesAndSchemaObjects
|
|
65
66
|
*/
|
|
@@ -73,7 +74,9 @@ export type Format = {
|
|
|
73
74
|
*/
|
|
74
75
|
/**
|
|
75
76
|
* @typedef {object} Format
|
|
76
|
-
* @property {() => (
|
|
77
|
+
* @property {() => (
|
|
78
|
+
* import('./types.js').AvailableArbitraryType
|
|
79
|
+
* )[]} types Returns list
|
|
77
80
|
* of types generally available to structured cloning. See
|
|
78
81
|
* {@link getTypesAndSchemasForState} for context-dependent method.
|
|
79
82
|
* @property {FormatIterator} iterate Traverses over data to build and return
|
|
@@ -91,14 +94,14 @@ export type Format = {
|
|
|
91
94
|
* newType: string, value: Date|Array<StructuredCloneValue>
|
|
92
95
|
* ) => boolean|undefined} [testInvalid]
|
|
93
96
|
* @property {(
|
|
94
|
-
* typesonType: import('./types.js').
|
|
97
|
+
* typesonType: import('./types.js').AvailableArbitraryType,
|
|
95
98
|
* types: import('./types.js').default,
|
|
96
99
|
* v?: import('./formats.js').StructuredCloneValue,
|
|
97
100
|
* arrayOrObjectPropertyName?: string,
|
|
98
101
|
* parentSchema?: [import('zodex').SzType, number|undefined]|undefined,
|
|
99
102
|
* stateObj?: import('./types.js').StateObject,
|
|
100
103
|
* ) => {
|
|
101
|
-
* type: import('./types.js').
|
|
104
|
+
* type: import('./types.js').AvailableArbitraryType|undefined
|
|
102
105
|
* schema?: import('zodex').SzType|undefined,
|
|
103
106
|
* mustBeOptional?: boolean,
|
|
104
107
|
* schemaIdx?: number
|
package/dist/formats.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"formats.d.ts","sourceRoot":"","sources":["../src/formats.js"],"names":[],"mappings":";;;;
|
|
1
|
+
{"version":3,"file":"formats.d.ts","sourceRoot":"","sources":["../src/formats.js"],"names":[],"mappings":";;;;mCAQa,GAAG;0DAKL,OAAO,YAAY,EAAE,OAAO,UAC5B,eAAe,6CAEf,OAAO,2BAA2B,EAAE,WAAW,GACzD,SAAa,mBACH,OAAO,2BAA2B,EAAE,WAAW,GACzD,SAAa,KACD,qBAAqB,GAAC,SAAS;8BAa/B,cAAc,GAAC,MAAM,GAAC,mBAAmB,GACrD,aAAiB,GAAC,QAAQ;oCAId;IACZ,KAAS,EAAE,CAAC,OAAO,YAAY,EAAE,sBAAsB,CAAC,EAAE,CAAC;IAC3D,aAAiB,EAAE,OAAO,qBAAqB,EAAE,WAAW,EAAE,CAAA;CAC3D;;;;;uCAOO,oBAAoB,YACpB,OAAO,YAAY,EAAE,WAAW,KAC9B,OAAO,CAAC,QAAQ,CAAC,OAAO,YAAY,EAAE,WAAW,CAAC,CAAC;;;;;;;WAKlD,MAAM,CACnB,OAAW,YAAY,EAAE,sBAAsB,CAC5C,EAAE;;;;;aAGQ,cAAc;;;;;gCAEd,CACT,KAAK,EAAE,OAAO,YAAY,EAAE,OAAO,EACnC,KAAK,CAAC,EAAE,MAAM,EACd,YAAY,CAAC,EAAE,OAAO,2BAA2B,EAAE,WAAW,GAClE,SAAe,EACX,cAAc,CAAC,EAAE,OAAO,2BAA2B,EAAE,WAAW,GACpE,SAAe,KACR,qBAAqB,GAAC,SAAS;6BAGvB,MAAM,SAAS,IAAI,GAAC,KAAK,CAAC,oBAAoB,CAAC,KACrD,OAAO,GAAC,SAAS;wCAET,OAAO,YAAY,EAAE,sBAAsB,SACjD,OAAO,YAAY,EAAE,OAAO,MAC/B,OAAO,cAAc,EAAE,oBAAoB,8BACnB,MAAM,iBACnB,CAAC,OAAO,OAAO,EAAE,MAAM,EAAE,MAAM,GAAC,SAAS,CAAC,GAAC,SAAS,aACxD,OAAO,YAAY,EAAE,WAAW,KACxC;QACP,IAAQ,EAAE,OAAO,YAAY,EAAE,sBAAsB,GAAC,SAAS,CAAA;QAC/D,MAAU,CAAC,EAAE,OAAO,OAAO,EAAE,MAAM,GAAC,SAAS,CAAC;QAC9C,cAAkB,CAAC,EAAE,OAAO,CAAC;QAC7B,SAAa,CAAC,EAAE,MAAM,CAAA;KACnB;;AAhFJ;;;GAGG;AAEH;;;;;;;;;;GAUG;AAWH;;;GAGG;AAEH;;;;;GAKG;AAEH;;;;;;;GAOG;AAEH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkCG;AAEH;;GAEG;AACH;IA+BI;;MAME;IAGJ;;;;;;OAMG;IACH,oCANW,OAAO,YAAY,EAAE,OAAO,UAC5B,eAAe,UACf,oBAAoB,YACpB,OAAO,YAAY,EAAE,WAAW,GAC9B,OAAO,CAAC,QAAQ,CAAC,OAAO,YAAY,EAAE,WAAW,CAAC,CAAC,CAY/D;IAzIA,2CACQ,OAAO,YAAY,EAAE,OAAO,UAC5B,eAAe,6CAEf,OAAO,2BAA2B,EAAE,WAAW,GACzD,SAAa,mBACH,OAAO,2BAA2B,EAAE,WAAW,GACzD,SAAa,GACD,qBAAqB,GAAC,SAAS,CAC3C;IA6IC;;;OAGG;IACH,2BAHW,eAAe,GACb,MAAM,CAIlB;CACF"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"functionType.d.ts","sourceRoot":"","sources":["../../src/fundamentalTypes/functionType.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"functionType.d.ts","sourceRoot":"","sources":["../../src/fundamentalTypes/functionType.js"],"names":[],"mappings":";;AAkKA;;GAEG;AACH,4BAFU,OAAO,aAAa,EAAE,UAAU,CAwJxC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"promiseType.d.ts","sourceRoot":"","sources":["../../src/fundamentalTypes/promiseType.js"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"promiseType.d.ts","sourceRoot":"","sources":["../../src/fundamentalTypes/promiseType.js"],"names":[],"mappings":";AAsDA;;GAEG;AACH,2BAFU,OAAO,aAAa,EAAE,UAAU,CAmIxC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"stringType.d.ts","sourceRoot":"","sources":["../../src/fundamentalTypes/stringType.js"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"stringType.d.ts","sourceRoot":"","sources":["../../src/fundamentalTypes/stringType.js"],"names":[],"mappings":";AAqDA;;GAEG;AACH,0BAFU,OAAO,aAAa,EAAE,UAAU,CA+NxC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"symbolType.d.ts","sourceRoot":"","sources":["../../src/fundamentalTypes/symbolType.js"],"names":[],"mappings":";AAEA;;GAEG;AACH,0BAFU,OAAO,aAAa,EAAE,UAAU,GAAG;IAAC,EAAE,EAAE,MAAM,CAAA;CAAC,
|
|
1
|
+
{"version":3,"file":"symbolType.d.ts","sourceRoot":"","sources":["../../src/fundamentalTypes/symbolType.js"],"names":[],"mappings":";AAEA;;GAEG;AACH,0BAFU,OAAO,aAAa,EAAE,UAAU,GAAG;IAAC,EAAE,EAAE,MAAM,CAAA;CAAC,CAmFvD"}
|