@es-joy/jsoe 0.13.8 → 0.15.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.
Files changed (73) hide show
  1. package/.eslintrc.cjs +7 -0
  2. package/.nyc_output/out.json +20068 -11970
  3. package/CHANGES.md +10 -0
  4. package/README.md +10 -21
  5. package/demo/index.js +79 -2
  6. package/dist/formats/indexedDBKey.d.ts.map +1 -1
  7. package/dist/formats/structuredCloning.d.ts.map +1 -1
  8. package/dist/fundamentalTypes/BooleanObjectType.d.ts.map +1 -1
  9. package/dist/fundamentalTypes/NumberObjectType.d.ts.map +1 -1
  10. package/dist/fundamentalTypes/StringObjectType.d.ts.map +1 -1
  11. package/dist/fundamentalTypes/arrayType.d.ts.map +1 -1
  12. package/dist/fundamentalTypes/blobType.d.ts.map +1 -1
  13. package/dist/fundamentalTypes/dateType.d.ts.map +1 -1
  14. package/dist/fundamentalTypes/fileType.d.ts.map +1 -1
  15. package/dist/fundamentalTypes/filelistType.d.ts.map +1 -1
  16. package/dist/fundamentalTypes/mapType.d.ts.map +1 -1
  17. package/dist/fundamentalTypes/noneditableType.d.ts +6 -0
  18. package/dist/fundamentalTypes/noneditableType.d.ts.map +1 -0
  19. package/dist/fundamentalTypes/objectReferenceType.d.ts.map +1 -1
  20. package/dist/fundamentalTypes/objectType.d.ts.map +1 -1
  21. package/dist/fundamentalTypes/setType.d.ts.map +1 -1
  22. package/dist/fundamentalTypes/sparseUndefinedType.d.ts.map +1 -1
  23. package/dist/fundamentalTypes/undefinedType.d.ts.map +1 -1
  24. package/dist/index.js +1980 -237
  25. package/dist/superTypes/SpecialNumberType.d.ts +2 -10
  26. package/dist/superTypes/SpecialNumberType.d.ts.map +1 -1
  27. package/dist/superTypes/SpecialRealNumberType.d.ts +2 -2
  28. package/dist/superTypes/SpecialRealNumberType.d.ts.map +1 -1
  29. package/dist/superTypes/buffersourceType.d.ts +8 -0
  30. package/dist/superTypes/buffersourceType.d.ts.map +1 -0
  31. package/dist/superTypes/dommatrixType.d.ts +6 -0
  32. package/dist/superTypes/dommatrixType.d.ts.map +1 -0
  33. package/dist/superTypes/dompointType.d.ts +6 -0
  34. package/dist/superTypes/dompointType.d.ts.map +1 -0
  35. package/dist/superTypes/domrectType.d.ts +6 -0
  36. package/dist/superTypes/domrectType.d.ts.map +1 -0
  37. package/dist/superTypes/errorsSpecialType.d.ts +2 -2
  38. package/dist/superTypes/errorsSpecialType.d.ts.map +1 -1
  39. package/dist/types.d.ts +29 -17
  40. package/dist/types.d.ts.map +1 -1
  41. package/dist/utils/media.d.ts.map +1 -1
  42. package/dist/vendor-imports.d.ts +1 -1
  43. package/package.json +13 -13
  44. package/src/formats/indexedDBKey.js +2 -3
  45. package/src/formats/structuredCloning.js +37 -20
  46. package/src/fundamentalTypes/BooleanObjectType.js +3 -1
  47. package/src/fundamentalTypes/NumberObjectType.js +3 -1
  48. package/src/fundamentalTypes/StringObjectType.js +3 -1
  49. package/src/fundamentalTypes/arrayType.js +4 -2
  50. package/src/fundamentalTypes/blobType.js +17 -13
  51. package/src/fundamentalTypes/dateType.js +6 -2
  52. package/src/fundamentalTypes/fileType.js +14 -12
  53. package/src/fundamentalTypes/filelistType.js +3 -1
  54. package/src/fundamentalTypes/mapType.js +3 -1
  55. package/src/fundamentalTypes/noneditableType.js +87 -0
  56. package/src/fundamentalTypes/objectReferenceType.js +3 -1
  57. package/src/fundamentalTypes/objectType.js +3 -1
  58. package/src/fundamentalTypes/setType.js +3 -1
  59. package/src/fundamentalTypes/sparseUndefinedType.js +3 -1
  60. package/src/fundamentalTypes/undefinedType.js +3 -1
  61. package/src/jsoe.css +64 -0
  62. package/src/subTypes/blobHTMLType.js +1 -1
  63. package/src/superTypes/SpecialNumberType.js +2 -8
  64. package/src/superTypes/SpecialRealNumberType.js +2 -2
  65. package/src/superTypes/buffersourceType.js +1455 -0
  66. package/src/{fundamentalTypes → superTypes}/dommatrixType.js +63 -10
  67. package/src/{fundamentalTypes → superTypes}/dompointType.js +60 -7
  68. package/src/{fundamentalTypes → superTypes}/domrectType.js +59 -7
  69. package/src/superTypes/errorsSpecialType.js +1 -1
  70. package/src/types.js +39 -22
  71. package/src/utils/media.js +3 -2
  72. package/src/vendor-imports.js +2 -1
  73. package/vendor/typeson-registry/dist/index.js +90 -28
package/CHANGES.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # CHANGES TO `@es-joy/jsoe`
2
2
 
3
+ ## 0.15.0
4
+
5
+ - feat: `buffersource`
6
+
7
+ ## 0.14.0
8
+
9
+ - feat: allow DOMRect, DOMPoint, DOMMatrix read-only versions
10
+ - feat: add noneditable type to catch and transparently pass on
11
+ unsupported types
12
+
3
13
  ## 0.13.8
4
14
 
5
15
  - fix: array/object reference value-retrieval broken
package/README.md CHANGED
@@ -31,15 +31,14 @@ Supported types include:
31
31
  - `Boolean` object
32
32
  - `Date`
33
33
  - `DOMException`,
34
- - `DOMMatrix`
35
- - `DOMPoint`
36
- - `DOMRect`
37
34
  - `Error`
38
35
  - `TypeError`, `RangeError`, `SyntaxError`, `ReferenceError`, `EvalError`,
39
36
  `URIError`, `AggregateError`, `InternalError`
40
37
  - `File`
41
38
  - `FileList`
42
39
  - `Map`
40
+ - Non-editable type (catch-all for not-yet-supported object types; allows
41
+ for preexisting data to be passed on transparently)
43
42
  - `null`
44
43
  - `Number` object
45
44
  - number
@@ -70,6 +69,13 @@ Supported supertypes include:
70
69
 
71
70
  - Special Real Number (`Infinity`, `-Infinity`, `-0`) - Used with IndexedDB keys (even though -0 apparently [to be converted](https://github.com/w3c/IndexedDB/issues/375) to 0)
72
71
  - Special Number (`Infinity`, `-Infinity`, `-0`, `NaN`) - Used with Structured Cloning values
72
+ - `DOMMatrix` (also includes `DOMMatrixReadOnly`)
73
+ - `DOMPoint` (also includes `DOMPointReadOnly`)
74
+ - `DOMRect` (also includes `DOMRectReadOnly`)
75
+ - `buffersource` includes `ArrayBuffer`, `DataView`, and TypedArrays
76
+ (int8array, uint8array, uint8clampedarray, int16array, uint16array,
77
+ int32array, uint32array, float32array, float64array,
78
+ bigint64array, biguint64array)
73
79
 
74
80
  ## Known issues
75
81
 
@@ -91,28 +97,11 @@ Supported supertypes include:
91
97
  1. See <https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API/Structured_clone_algorithm#webapi_types>
92
98
  1. Already in typeson-registry
93
99
  1. Structured Cloning
94
- 1. JavaScript types
95
- 1. ArrayBuffer
96
- 1. arraybuffer
97
- 1. DataView
98
- 1. dataview
99
- 1. TypedArray
100
- 1. int8array
101
- 1. uint8array
102
- 1. uint8clampedarray
103
- 1. int16array
104
- 1. uint16array
105
- 1. int32array
106
- 1. uint32array
107
- 1. float32array
108
- 1. float64array
109
- 1. bigint64arrayconstructor
110
- 1. biguint64arrayconstructor
100
+ 1. (JavaScript types already complete)
111
101
  1. Web/API types
112
102
  1. imagedata, imagebitmap
113
103
  1. cryptokey
114
104
  1. domquad
115
- 1. dompointreadonly, dommatrixreadonly, domrectreadonly
116
105
  1. Our own custom derivative types? (e.g., MIDI using TypedArray)
117
106
  1. Expand subtypes
118
107
  1. String
package/demo/index.js CHANGED
@@ -9,6 +9,26 @@ import {
9
9
 
10
10
  const types = new Types();
11
11
 
12
+ /**
13
+ *
14
+ */
15
+ const makeNoneditableType = () => {
16
+ /**
17
+ *
18
+ */
19
+ class NonEditableType {
20
+ /* eslint-disable class-methods-use-this -- `this` not needed */
21
+ /**
22
+ * @returns {string}
23
+ */
24
+ get [Symbol.toStringTag] () {
25
+ /* eslint-enable class-methods-use-this -- `this` not needed */
26
+ return 'NonEditableType';
27
+ }
28
+ }
29
+ return new NonEditableType();
30
+ };
31
+
12
32
  const keyPathNotExpectedTypeChoices = formatAndTypeChoices({
13
33
  hasKeyPath: false,
14
34
  typeNamespace: 'demo-keypath-not-expected'
@@ -105,6 +125,40 @@ setTimeout(async function () {
105
125
  }
106
126
  }, ['Initialize with a complex value']],
107
127
 
128
+ ['button', {
129
+ id: 'initializeWithNoneditableValue',
130
+ $on: {
131
+ click () {
132
+ const a = makeNoneditableType();
133
+ const root = $(
134
+ '#formatAndTypeChoices div[data-type="resurrectable"]'
135
+ );
136
+ keyPathNotExpectedTypeChoices.types.setValue({
137
+ type: 'resurrectable',
138
+ root,
139
+ value: a
140
+ });
141
+ keyPathNotExpectedTypeChoices.types.validate({
142
+ type: 'resurrectable',
143
+ root
144
+ });
145
+
146
+ setTimeout(() => {
147
+ keyPathNotExpectedTypeChoices.types.setValue({
148
+ type: 'resurrectable',
149
+ root,
150
+ value: undefined
151
+ });
152
+ keyPathNotExpectedTypeChoices.types.validate({
153
+ type: 'resurrectable',
154
+ root
155
+ });
156
+ }, 3000);
157
+ // await keyPathNotExpectedTypeChoices.setValue(a);
158
+ }
159
+ }
160
+ }, ['Initialize with noneditable value then change']],
161
+
108
162
  ['button', {
109
163
  id: 'programmaticallySetFormatToJSON',
110
164
  $on: {
@@ -351,14 +405,21 @@ setTimeout(async function () {
351
405
  }),
352
406
  new DOMException('some message', 'someName'),
353
407
  new DOMRect(1, 2, 3, 4),
408
+ new DOMRectReadOnly(1, 2, 3, 4),
354
409
  new DOMPoint(1, 2, 3, 4),
410
+ new DOMPointReadOnly(1, 2, 3, 4),
355
411
  new DOMMatrix([1, 2, 3, 4, 5, 6]),
412
+ new DOMMatrixReadOnly([1, 2, 3, 4, 5, 6]),
356
413
  new DOMMatrix([
357
414
  1, 2, 3, 4,
358
415
  5, 6, 7, 8,
359
416
  9, 10, 11, 12,
360
417
  13, 14, 15, 16
361
- ])
418
+ ]),
419
+ new ArrayBuffer(8),
420
+ new DataView(new ArrayBuffer(8), 2, 4),
421
+ new Uint8Array(new ArrayBuffer(8), 2, 4),
422
+ makeNoneditableType()
362
423
  ],
363
424
  typeNamespace: 'demo-type-choices-only-initial-value'
364
425
  });
@@ -429,6 +490,20 @@ setTimeout(async function () {
429
490
  typeNamespace: 'demo-type-choices-only-initial-value'
430
491
  });
431
492
 
493
+ const typeSelectionNoneditable = typeChoices({
494
+ format: 'structuredCloning',
495
+ setValue: true,
496
+ value: makeNoneditableType(),
497
+ typeNamespace: 'demo-type-choices-only-initial-value'
498
+ });
499
+
500
+ const typeSelectionArrayBuffer = typeChoices({
501
+ format: 'structuredCloning',
502
+ setValue: true,
503
+ value: new ArrayBuffer(8),
504
+ typeNamespace: 'demo-type-choices-only-initial-value'
505
+ });
506
+
432
507
  return ['form', [
433
508
  ...typeSelection.domArray,
434
509
  ...typeSelectionBlobHTML.domArray,
@@ -437,7 +512,9 @@ setTimeout(async function () {
437
512
  ...typeSelectionTypeErrorWithCause.domArray,
438
513
  ...typeSelectionTypeErrorWithAggregate.domArray,
439
514
  ...typeSelectionFile.domArray,
440
- ...typeSelectionBlob.domArray
515
+ ...typeSelectionBlob.domArray,
516
+ ...typeSelectionNoneditable.domArray,
517
+ ...typeSelectionArrayBuffer.domArray
441
518
  ]];
442
519
  })(),
443
520
 
@@ -1 +1 @@
1
- {"version":3,"file":"indexedDBKey.d.ts","sourceRoot":"","sources":["../../src/formats/indexedDBKey.js"],"names":[],"mappings":";AAEA,6CAA6C;AAC7C,4BADW,OAAO,eAAe,EAAE,MAAM,CAuCvC"}
1
+ {"version":3,"file":"indexedDBKey.d.ts","sourceRoot":"","sources":["../../src/formats/indexedDBKey.js"],"names":[],"mappings":";AAEA,6CAA6C;AAC7C,4BADW,OAAO,eAAe,EAAE,MAAM,CAwCvC"}
@@ -1 +1 @@
1
- {"version":3,"file":"structuredCloning.d.ts","sourceRoot":"","sources":["../../src/formats/structuredCloning.js"],"names":[],"mappings":";2CAYoB;IACnB,QAAY,EAAE,MAAM,CAAC;IACrB,IAAQ,EAAE,OAAO,aAAa,EAAE,aAAa,CAAC;IAC9C,KAAS,EAAE,OAAO,eAAe,EAAE,oBAAoB,CAAC;IACxD,cAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,SAAa,CAAC,EAAE,OAAO,CAAC;IACxB,aAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,WAAe,CAAC,EAAE,OAAO,aAAa,EAAE,gCAAgC,CAAA;CACrE,KAAK,WAAW,GAAC,IAAI;kCAIZ,OAAO,kBAAkB,EAAE,mBAAmB;uCA6WhD,OAAO,eAAe,EAAE,oBAAoB,YAC5C,OAAO,aAAa,EAAE,WAAW,KAC/B,QAAQ,OAAO,CAAC;AAJ7B;;;;;GAKG;AAEH,6CAA6C;AAC7C,iCADW,OAAO,eAAe,EAAE,MAAM,CA+GvC"}
1
+ {"version":3,"file":"structuredCloning.d.ts","sourceRoot":"","sources":["../../src/formats/structuredCloning.js"],"names":[],"mappings":";2CAsBoB;IACnB,QAAY,EAAE,MAAM,CAAC;IACrB,IAAQ,EAAE,OAAO,aAAa,EAAE,aAAa,CAAC;IAC9C,KAAS,EAAE,OAAO,eAAe,EAAE,oBAAoB,CAAC;IACxD,cAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,SAAa,CAAC,EAAE,OAAO,CAAC;IACxB,aAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,WAAe,CAAC,EAAE,OAAO,aAAa,EAAE,gCAAgC,CAAA;CACrE,KAAK,WAAW,GAAC,IAAI;kCAIZ,OAAO,kBAAkB,EAAE,mBAAmB;uCA2WhD,OAAO,eAAe,EAAE,oBAAoB,YAC5C,OAAO,aAAa,EAAE,WAAW,KAC/B,QAAQ,OAAO,CAAC;AAJ7B;;;;;GAKG;AAEH,6CAA6C;AAC7C,iCADW,OAAO,eAAe,EAAE,MAAM,CAwHvC"}
@@ -1 +1 @@
1
- {"version":3,"file":"BooleanObjectType.d.ts","sourceRoot":"","sources":["../../src/fundamentalTypes/BooleanObjectType.js"],"names":[],"mappings":";AAEA;;GAEG;AACH,iCAFU,OAAO,aAAa,EAAE,UAAU,GAAG;IAAC,EAAE,EAAE,MAAM,CAAA;CAAC,CAmDvD"}
1
+ {"version":3,"file":"BooleanObjectType.d.ts","sourceRoot":"","sources":["../../src/fundamentalTypes/BooleanObjectType.js"],"names":[],"mappings":";AAEA;;GAEG;AACH,iCAFU,OAAO,aAAa,EAAE,UAAU,GAAG;IAAC,EAAE,EAAE,MAAM,CAAA;CAAC,CAqDvD"}
@@ -1 +1 @@
1
- {"version":3,"file":"NumberObjectType.d.ts","sourceRoot":"","sources":["../../src/fundamentalTypes/NumberObjectType.js"],"names":[],"mappings":";AAGA;;GAEG;AACH,gCAFU,OAAO,aAAa,EAAE,UAAU,CAoCxC"}
1
+ {"version":3,"file":"NumberObjectType.d.ts","sourceRoot":"","sources":["../../src/fundamentalTypes/NumberObjectType.js"],"names":[],"mappings":";AAGA;;GAEG;AACH,gCAFU,OAAO,aAAa,EAAE,UAAU,CAsCxC"}
@@ -1 +1 @@
1
- {"version":3,"file":"StringObjectType.d.ts","sourceRoot":"","sources":["../../src/fundamentalTypes/StringObjectType.js"],"names":[],"mappings":";AAEA;;GAEG;AACH,gCAFU,OAAO,aAAa,EAAE,UAAU,CA+BxC"}
1
+ {"version":3,"file":"StringObjectType.d.ts","sourceRoot":"","sources":["../../src/fundamentalTypes/StringObjectType.js"],"names":[],"mappings":";AAEA;;GAEG;AACH,gCAFU,OAAO,aAAa,EAAE,UAAU,CAiCxC"}
@@ -1 +1 @@
1
- {"version":3,"file":"arrayType.d.ts","sourceRoot":"","sources":["../../src/fundamentalTypes/arrayType.js"],"names":[],"mappings":";sBAWa,MAAM;;oCAQN,MAAM,gBAAgB,EAAE;+BAGxB,MAAM,CAAC,iBAAiB,GAAG;IACvC,SAAa,EAAE,OAAO,mBAAmB,EAAE,QAAQ,CAAA;CAChD,CAAC,EAAE;6BAGM,MAAM,IAAI;sCAIV,gBAAgB,EAAE;qCAKlB,IAAI;4BAGJ,MAAM,cAAc,GAAG;IACnC,sBAA0B,EAAE,qBAAqB,CAAC;IAClD,kBAAsB,EAAE,iBAAiB,CAAC;IAC1C,iBAAqB,EAAE,gBAAgB,CAAC;IACxC,iBAAqB,EAAE,gBAAgB,CAAA;CACpC;uBAGS,MAAM,QAAQ,IAAI,CAAC;2BAKrB;IAAC,WAAW,CAAC,EAAE,IAAI,CAAA;CAAC,KAClB,IAAI;+BAIJ,MAAM,gBAAgB,GAAC,SAAS;uBAIhC,GAAG;AAmBhB;;GAEG;AACH,yBAFU,OAAO,aAAa,EAAE,UAAU,GAAG;IAAC,MAAM,CAAC,EAAE,OAAO,GAAC,SAAS,CAAA;CAAC,CA2pDvE"}
1
+ {"version":3,"file":"arrayType.d.ts","sourceRoot":"","sources":["../../src/fundamentalTypes/arrayType.js"],"names":[],"mappings":";sBAWa,MAAM;;oCAQN,MAAM,gBAAgB,EAAE;+BAGxB,MAAM,CAAC,iBAAiB,GAAG;IACvC,SAAa,EAAE,OAAO,mBAAmB,EAAE,QAAQ,CAAA;CAChD,CAAC,EAAE;6BAGM,MAAM,IAAI;sCAIV,gBAAgB,EAAE;qCAKlB,IAAI;4BAGJ,MAAM,cAAc,GAAG;IACnC,sBAA0B,EAAE,qBAAqB,CAAC;IAClD,kBAAsB,EAAE,iBAAiB,CAAC;IAC1C,iBAAqB,EAAE,gBAAgB,CAAC;IACxC,iBAAqB,EAAE,gBAAgB,CAAA;CACpC;uBAGS,MAAM,QAAQ,IAAI,CAAC;2BAKrB;IAAC,WAAW,CAAC,EAAE,IAAI,CAAA;CAAC,KAClB,IAAI;+BAIJ,MAAM,gBAAgB,GAAC,SAAS;uBAIhC,GAAG;AAmBhB;;GAEG;AACH,yBAFU,OAAO,aAAa,EAAE,UAAU,GAAG;IAAC,MAAM,CAAC,EAAE,OAAO,GAAC,SAAS,CAAA;CAAC,CA6pDvE"}
@@ -1 +1 @@
1
- {"version":3,"file":"blobType.d.ts","sourceRoot":"","sources":["../../src/fundamentalTypes/blobType.js"],"names":[],"mappings":";uBAMa,IAAI,GAAC;IACjB,IAAQ,EAAE,MAAM,CAAC;IAAC,IAAI,EAAE,MAAM,CAAA;CAC3B;8BAIgB,QAAQ,KAAK,IAAI;AAiIrC;;GAEG;AACH,wBAFU,OAAO,aAAa,EAAE,UAAU,CAw1BxC"}
1
+ {"version":3,"file":"blobType.d.ts","sourceRoot":"","sources":["../../src/fundamentalTypes/blobType.js"],"names":[],"mappings":";uBAMa,IAAI,GAAC;IACjB,IAAQ,EAAE,MAAM,CAAC;IAAC,IAAI,EAAE,MAAM,CAAA;CAC3B;8BAIgB,QAAQ,KAAK,IAAI;AAkIrC;;GAEG;AACH,wBAFU,OAAO,aAAa,EAAE,UAAU,CA21BxC"}
@@ -1 +1 @@
1
- {"version":3,"file":"dateType.d.ts","sourceRoot":"","sources":["../../src/fundamentalTypes/dateType.js"],"names":[],"mappings":";+CAKyB,IAAI,GAAC,SAAS,KAC/B,IAAI;AAHZ;;;;GAIG;AAEH;;;;;;;;;GASG;AACH;eARgB,MAAM;qBACA;QAAC,IAAI,EAAE,cAAc,CAAA;KAAC,KAAK,OAAO;4BAE1C,OAAO,eAAe,EAAE,oBAAoB,KAChD,OAAO;;EA0If"}
1
+ {"version":3,"file":"dateType.d.ts","sourceRoot":"","sources":["../../src/fundamentalTypes/dateType.js"],"names":[],"mappings":";+CAKyB,IAAI,GAAC,SAAS,KAC/B,IAAI;AAHZ;;;;GAIG;AAEH;;;;;;;;;GASG;AACH;eARgB,MAAM;qBACA;QAAC,IAAI,EAAE,cAAc,CAAA;KAAC,KAAK,OAAO;4BAE1C,OAAO,eAAe,EAAE,oBAAoB,KAChD,OAAO;;EA8If"}
@@ -1 +1 @@
1
- {"version":3,"file":"fileType.d.ts","sourceRoot":"","sources":["../../src/fundamentalTypes/fileType.js"],"names":[],"mappings":";uBAMa,IAAI,GAAC;IACjB,MAAU,MAAM,CAAC;IAAC,IAAI,EAAE,MAAM,CAAC;IAAC,IAAI,EAAE,MAAM,CAAC;IAC7C,YAAgB,EAAE,MAAM,CAAA;CACrB;8BAIgB,QAAQ,KAAK,IAAI;AAsJrC;;GAEG;AACH,wBAFU,OAAO,aAAa,EAAE,UAAU,CA+6BxC"}
1
+ {"version":3,"file":"fileType.d.ts","sourceRoot":"","sources":["../../src/fundamentalTypes/fileType.js"],"names":[],"mappings":";uBAMa,IAAI,GAAC;IACjB,MAAU,MAAM,CAAC;IAAC,IAAI,EAAE,MAAM,CAAC;IAAC,IAAI,EAAE,MAAM,CAAC;IAC7C,YAAgB,EAAE,MAAM,CAAA;CACrB;8BAIgB,QAAQ,KAAK,IAAI;AAuJrC;;GAEG;AACH,wBAFU,OAAO,aAAa,EAAE,UAAU,CAg7BxC"}
@@ -1 +1 @@
1
- {"version":3,"file":"filelistType.d.ts","sourceRoot":"","sources":["../../src/fundamentalTypes/filelistType.js"],"names":[],"mappings":";AAEA;;GAEG;AACH,4BAFU,OAAO,aAAa,EAAE,UAAU,CA6BxC"}
1
+ {"version":3,"file":"filelistType.d.ts","sourceRoot":"","sources":["../../src/fundamentalTypes/filelistType.js"],"names":[],"mappings":";AAEA;;GAEG;AACH,4BAFU,OAAO,aAAa,EAAE,UAAU,CA+BxC"}
@@ -1 +1 @@
1
- {"version":3,"file":"mapType.d.ts","sourceRoot":"","sources":["../../src/fundamentalTypes/mapType.js"],"names":[],"mappings":";AAEA;;GAEG;AACH,uBAFU,OAAO,aAAa,EAAE,UAAU,CA4BxC"}
1
+ {"version":3,"file":"mapType.d.ts","sourceRoot":"","sources":["../../src/fundamentalTypes/mapType.js"],"names":[],"mappings":";AAEA;;GAEG;AACH,uBAFU,OAAO,aAAa,EAAE,UAAU,CA8BxC"}
@@ -0,0 +1,6 @@
1
+ export default noneditableType;
2
+ /**
3
+ * @type {import('../types.js').TypeObject}
4
+ */
5
+ declare const noneditableType: import('../types.js').TypeObject;
6
+ //# sourceMappingURL=noneditableType.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"noneditableType.d.ts","sourceRoot":"","sources":["../../src/fundamentalTypes/noneditableType.js"],"names":[],"mappings":";AAGA;;GAEG;AACH,+BAFU,OAAO,aAAa,EAAE,UAAU,CAgFxC"}
@@ -1 +1 @@
1
- {"version":3,"file":"objectReferenceType.d.ts","sourceRoot":"","sources":["../../src/fundamentalTypes/objectReferenceType.js"],"names":[],"mappings":";AAEA;;GAEG;AACH,mCAFU,OAAO,aAAa,EAAE,UAAU,GAAG;IAAC,IAAI,EAAE,MAAM,CAAA;CAAC,CAgDzD"}
1
+ {"version":3,"file":"objectReferenceType.d.ts","sourceRoot":"","sources":["../../src/fundamentalTypes/objectReferenceType.js"],"names":[],"mappings":";AAEA;;GAEG;AACH,mCAFU,OAAO,aAAa,EAAE,UAAU,GAAG;IAAC,IAAI,EAAE,MAAM,CAAA;CAAC,CAkDzD"}
@@ -1 +1 @@
1
- {"version":3,"file":"objectType.d.ts","sourceRoot":"","sources":["../../src/fundamentalTypes/objectType.js"],"names":[],"mappings":";AAEA;;GAEG;AACH,0BAFU,OAAO,aAAa,EAAE,UAAU,CAwBxC"}
1
+ {"version":3,"file":"objectType.d.ts","sourceRoot":"","sources":["../../src/fundamentalTypes/objectType.js"],"names":[],"mappings":";AAEA;;GAEG;AACH,0BAFU,OAAO,aAAa,EAAE,UAAU,CA0BxC"}
@@ -1 +1 @@
1
- {"version":3,"file":"setType.d.ts","sourceRoot":"","sources":["../../src/fundamentalTypes/setType.js"],"names":[],"mappings":";AAEA;;GAEG;AACH,uBAFU,OAAO,aAAa,EAAE,UAAU,CA4BxC"}
1
+ {"version":3,"file":"setType.d.ts","sourceRoot":"","sources":["../../src/fundamentalTypes/setType.js"],"names":[],"mappings":";AAEA;;GAEG;AACH,uBAFU,OAAO,aAAa,EAAE,UAAU,CA8BxC"}
@@ -1 +1 @@
1
- {"version":3,"file":"sparseUndefinedType.d.ts","sourceRoot":"","sources":["../../src/fundamentalTypes/sparseUndefinedType.js"],"names":[],"mappings":";AAEA;;GAEG;AACH,mCAFU,OAAO,aAAa,EAAE,UAAU,CA0CxC"}
1
+ {"version":3,"file":"sparseUndefinedType.d.ts","sourceRoot":"","sources":["../../src/fundamentalTypes/sparseUndefinedType.js"],"names":[],"mappings":";AAEA;;GAEG;AACH,mCAFU,OAAO,aAAa,EAAE,UAAU,CA4CxC"}
@@ -1 +1 @@
1
- {"version":3,"file":"undefinedType.d.ts","sourceRoot":"","sources":["../../src/fundamentalTypes/undefinedType.js"],"names":[],"mappings":";AAEA;;GAEG;AACH,6BAFU,OAAO,aAAa,EAAE,UAAU,CA8BxC"}
1
+ {"version":3,"file":"undefinedType.d.ts","sourceRoot":"","sources":["../../src/fundamentalTypes/undefinedType.js"],"names":[],"mappings":";AAEA;;GAEG;AACH,6BAFU,OAAO,aAAa,EAAE,UAAU,CAgCxC"}