pareto-json 0.3.52 → 0.3.53

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.
@@ -0,0 +1,22 @@
1
+ import * as _pi from 'pareto-core/dist/interface';
2
+ export type Document_ = Value_;
3
+ export declare namespace Value_ {
4
+ namespace array {
5
+ type L = Value_;
6
+ }
7
+ type array = _pi.List<array.L>;
8
+ namespace object_ {
9
+ type D = Value_;
10
+ }
11
+ type object_ = _pi.Dictionary<object_.D>;
12
+ namespace number_ {
13
+ type integer = number;
14
+ type float = number;
15
+ }
16
+ type number_ = readonly ['integer', number_.integer] | readonly ['float', number_.float];
17
+ type string_ = string;
18
+ type boolean_ = boolean;
19
+ type null_ = null;
20
+ }
21
+ export type Value_ = readonly ['array', Value_.array] | readonly ['object', Value_.object_] | readonly ['number', Value_.number_] | readonly ['string', Value_.string_] | readonly ['boolean', Value_.boolean_] | readonly ['null', Value_.null_];
22
+ export { Document_ as Document, Value_ as Value, };
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0YS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3NyYy9pbnRlcmZhY2UvZ2VuZXJhdGVkL2xpYW5hL3NjaGVtYXMvanNvbl93aXRoX3VuaXF1ZV9rZXlzL2RhdGEudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pareto-json",
3
- "version": "0.3.52",
3
+ "version": "0.3.53",
4
4
  "author": "Corno",
5
5
  "license": "Apache-2.0",
6
6
  "description": "A TypeScript library for building JSON values in Pareto-style which can then be serialized",