pema 0.4.0 → 0.6.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 (264) hide show
  1. package/lib/private/ArrayType.d.ts +2 -1
  2. package/lib/private/ArrayType.js +29 -41
  3. package/lib/private/BigIntType.d.ts +2 -2
  4. package/lib/private/BigUintType.d.ts +2 -2
  5. package/lib/private/BlobType.d.ts +2 -2
  6. package/lib/private/BlobType.js +2 -2
  7. package/lib/private/BooleanType.d.ts +2 -2
  8. package/lib/private/BooleanType.js +4 -4
  9. package/lib/private/BuiltinType.d.ts +1 -2
  10. package/lib/private/BuiltinType.js +3 -8
  11. package/lib/private/ConstructorType.d.ts +5 -2
  12. package/lib/private/ConstructorType.js +7 -5
  13. package/lib/private/DataType.d.ts +5 -1
  14. package/lib/private/DateType.d.ts +2 -2
  15. package/lib/private/DateType.js +2 -2
  16. package/lib/private/DefaultType.js +3 -6
  17. package/lib/private/EnumType.d.ts +21 -0
  18. package/lib/private/EnumType.js +30 -0
  19. package/lib/private/FileType.d.ts +2 -2
  20. package/lib/private/FileType.js +2 -2
  21. package/lib/private/FunctionType.d.ts +15 -0
  22. package/lib/private/FunctionType.js +20 -0
  23. package/lib/private/GenericType.d.ts +1 -1
  24. package/lib/private/InferInputSchema.d.ts +7 -17
  25. package/lib/private/InferStore.d.ts +1 -1
  26. package/lib/private/IntType.d.ts +2 -2
  27. package/lib/private/IsType.d.ts +19 -0
  28. package/lib/private/IsType.js +29 -0
  29. package/lib/private/Issue.d.ts +3 -1
  30. package/lib/private/IssueType.d.ts +3 -0
  31. package/lib/private/IssueType.js +2 -0
  32. package/lib/private/JSONType.d.ts +26 -0
  33. package/lib/private/JSONType.js +41 -0
  34. package/lib/private/LiteralType.d.ts +5 -2
  35. package/lib/private/LiteralType.js +11 -5
  36. package/lib/private/NormalizeSchema.d.ts +4 -6
  37. package/lib/private/NullType.js +3 -5
  38. package/lib/private/NumberType.d.ts +1 -1
  39. package/lib/private/NumberType.js +1 -1
  40. package/lib/private/NumericType.d.ts +2 -2
  41. package/lib/private/ObjectType.d.ts +13 -4
  42. package/lib/private/ObjectType.js +24 -11
  43. package/lib/private/OmitType.d.ts +1 -1
  44. package/lib/private/OmitType.js +7 -6
  45. package/lib/private/ParseError.d.ts +6 -2
  46. package/lib/private/ParseError.js +25 -15
  47. package/lib/private/ParseOptions.d.ts +1 -1
  48. package/lib/private/Parsed.d.ts +2 -1
  49. package/lib/private/Parsed.js +3 -0
  50. package/lib/private/PartialType.js +8 -10
  51. package/lib/private/Partialable.d.ts +1 -1
  52. package/lib/private/PrimitiveType.d.ts +0 -1
  53. package/lib/private/PrimitiveType.js +23 -22
  54. package/lib/private/PureType.d.ts +1 -1
  55. package/lib/private/RecordType.js +14 -39
  56. package/lib/private/Schema.d.ts +1 -1
  57. package/lib/private/Serialized.d.ts +18 -4
  58. package/lib/private/{Storeable.d.ts → Storable.d.ts} +3 -3
  59. package/lib/private/{Storeable.js → Storable.js} +2 -2
  60. package/lib/private/StoreSchema.d.ts +3 -6
  61. package/lib/private/StoreType.d.ts +5 -1
  62. package/lib/private/StoreType.js +22 -2
  63. package/lib/private/StringType.d.ts +2 -3
  64. package/lib/private/StringType.js +7 -13
  65. package/lib/private/TupleType.d.ts +2 -2
  66. package/lib/private/TupleType.js +19 -14
  67. package/lib/private/Type.d.ts +1 -1
  68. package/lib/private/URLType.d.ts +2 -2
  69. package/lib/private/URLType.js +2 -2
  70. package/lib/private/UUIDType.d.ts +17 -0
  71. package/lib/private/UUIDType.js +33 -0
  72. package/lib/private/UUIDV4Type.d.ts +13 -0
  73. package/lib/private/UUIDV4Type.js +23 -0
  74. package/lib/private/UUIDV7Type.d.ts +13 -0
  75. package/lib/private/UUIDV7Type.js +23 -0
  76. package/lib/private/UintType.d.ts +2 -2
  77. package/lib/private/UnionType.d.ts +3 -3
  78. package/lib/private/UnionType.js +11 -13
  79. package/lib/private/VirtualType.js +2 -3
  80. package/lib/private/coerce/bigint.d.ts +1 -1
  81. package/lib/private/coerce/bigint.js +4 -6
  82. package/lib/private/coerce/float.d.ts +2 -0
  83. package/lib/private/coerce/float.js +8 -0
  84. package/lib/private/coerce/int.d.ts +1 -1
  85. package/lib/private/coerce/int.js +7 -5
  86. package/lib/private/constructor.d.ts +1 -1
  87. package/lib/private/dict.d.ts +11 -0
  88. package/lib/private/dict.js +6 -0
  89. package/lib/private/enum.d.ts +3 -0
  90. package/lib/private/enum.js +5 -0
  91. package/lib/private/errors.d.ts +21 -0
  92. package/lib/private/errors.js +53 -0
  93. package/lib/private/function.d.ts +7 -0
  94. package/lib/private/function.js +6 -0
  95. package/lib/private/index.d.ts +79 -30
  96. package/lib/private/index.js +20 -2
  97. package/lib/private/is.d.ts +4 -0
  98. package/lib/private/is.js +3 -0
  99. package/lib/private/json/JSONIssue.d.ts +2 -0
  100. package/lib/private/json/JSONPayload.d.ts +1 -1
  101. package/lib/private/json.d.ts +5 -0
  102. package/lib/private/json.js +5 -0
  103. package/lib/private/normalize.js +2 -3
  104. package/lib/private/object.d.ts +3 -4
  105. package/lib/private/object.js +2 -2
  106. package/lib/private/omit.d.ts +1 -1
  107. package/lib/private/path/join.d.ts +1 -1
  108. package/lib/private/path/next.d.ts +1 -1
  109. package/lib/private/path/rebase.d.ts +1 -1
  110. package/lib/private/schema-errors.d.ts +16 -0
  111. package/lib/private/schema-errors.js +17 -0
  112. package/lib/private/spec/bigint.d.ts +1 -1
  113. package/lib/private/spec/bigint.js +30 -41
  114. package/lib/private/spec/biguint.d.ts +1 -1
  115. package/lib/private/spec/biguint.js +29 -45
  116. package/lib/private/spec/int.d.ts +1 -1
  117. package/lib/private/spec/int.js +27 -38
  118. package/lib/private/spec/uint.d.ts +1 -1
  119. package/lib/private/spec/uint.js +31 -43
  120. package/lib/private/test.d.ts +34 -0
  121. package/lib/private/test.js +107 -0
  122. package/lib/private/uuid.d.ts +4 -0
  123. package/lib/private/uuid.js +3 -0
  124. package/lib/private/validator/ends-with.d.ts +1 -2
  125. package/lib/private/validator/ends-with.js +8 -10
  126. package/lib/private/validator/f32.js +3 -8
  127. package/lib/private/validator/integer.d.ts +1 -2
  128. package/lib/private/validator/integer.js +7 -11
  129. package/lib/private/validator/isotime.js +8 -10
  130. package/lib/private/validator/length.js +12 -20
  131. package/lib/private/validator/max.js +15 -16
  132. package/lib/private/validator/min.js +15 -16
  133. package/lib/private/validator/port.d.ts +1 -2
  134. package/lib/private/validator/port.js +6 -9
  135. package/lib/private/validator/range.js +7 -13
  136. package/lib/private/validator/regex.d.ts +1 -1
  137. package/lib/private/validator/regex.js +5 -9
  138. package/lib/private/validator/starts-with.d.ts +1 -2
  139. package/lib/private/validator/starts-with.js +8 -10
  140. package/lib/private/validator/unique-by.d.ts +1 -1
  141. package/lib/private/validator/unique-by.js +8 -14
  142. package/lib/private/validator/unique-with.d.ts +1 -1
  143. package/lib/private/validator/unique-with.js +3 -7
  144. package/lib/private/validator/unique.js +2 -6
  145. package/lib/private/validator/values.d.ts +1 -1
  146. package/lib/private/validator/values.js +5 -8
  147. package/lib/public/StoreType.d.ts +1 -1
  148. package/lib/public/index.d.ts +1 -9
  149. package/lib/public/index.js +0 -9
  150. package/package.json +18 -15
  151. package/lib/private/DecrementDepth.d.ts +0 -3
  152. package/lib/private/DecrementDepth.js +0 -2
  153. package/lib/private/InferSchema.d.ts +0 -20
  154. package/lib/private/InferSchema.js +0 -2
  155. package/lib/private/PrimaryType.d.ts +0 -14
  156. package/lib/private/PrimaryType.js +0 -26
  157. package/lib/private/SchemaError.d.ts +0 -4
  158. package/lib/private/SchemaError.js +0 -8
  159. package/lib/private/error/fail.d.ts +0 -3
  160. package/lib/private/error/fail.js +0 -5
  161. package/lib/private/error/schemafail.d.ts +0 -3
  162. package/lib/private/error/schemafail.js +0 -5
  163. package/lib/private/error.d.ts +0 -4
  164. package/lib/private/error.js +0 -11
  165. package/lib/private/expect.d.ts +0 -22
  166. package/lib/private/expect.js +0 -32
  167. package/lib/private/expected.d.ts +0 -3
  168. package/lib/private/expected.js +0 -11
  169. package/lib/private/primary.d.ts +0 -4
  170. package/lib/private/primary.js +0 -3
  171. package/lib/private/test/messages-of.d.ts +0 -3
  172. package/lib/private/test/messages-of.js +0 -4
  173. package/lib/private/test/paths-of.d.ts +0 -3
  174. package/lib/private/test/paths-of.js +0 -4
  175. package/lib/private/test/throws-issues.d.ts +0 -4
  176. package/lib/private/test/throws-issues.js +0 -13
  177. package/lib/private/validator/uuid.d.ts +0 -3
  178. package/lib/private/validator/uuid.js +0 -4
  179. package/lib/public/DataType.d.ts +0 -2
  180. package/lib/public/DataType.js +0 -2
  181. package/lib/public/Id.d.ts +0 -2
  182. package/lib/public/Id.js +0 -2
  183. package/lib/public/InferStore.d.ts +0 -2
  184. package/lib/public/InferStore.js +0 -2
  185. package/lib/public/InferStoreOut.d.ts +0 -2
  186. package/lib/public/InferStoreOut.js +0 -2
  187. package/lib/public/Issue.d.ts +0 -2
  188. package/lib/public/Issue.js +0 -2
  189. package/lib/public/JSONPayload.d.ts +0 -2
  190. package/lib/public/JSONPayload.js +0 -2
  191. package/lib/public/OmitType.d.ts +0 -2
  192. package/lib/public/OmitType.js +0 -2
  193. package/lib/public/Schema.d.ts +0 -2
  194. package/lib/public/Schema.js +0 -2
  195. package/lib/public/Serialized.d.ts +0 -2
  196. package/lib/public/Serialized.js +0 -2
  197. package/lib/public/StoreId.d.ts +0 -2
  198. package/lib/public/StoreId.js +0 -2
  199. package/lib/public/StoreSchema.d.ts +0 -2
  200. package/lib/public/StoreSchema.js +0 -2
  201. package/lib/public/array.d.ts +0 -3
  202. package/lib/public/array.js +0 -3
  203. package/lib/public/bigint.d.ts +0 -2
  204. package/lib/public/bigint.js +0 -2
  205. package/lib/public/biguint.d.ts +0 -2
  206. package/lib/public/biguint.js +0 -2
  207. package/lib/public/blob.d.ts +0 -2
  208. package/lib/public/blob.js +0 -2
  209. package/lib/public/boolean.d.ts +0 -3
  210. package/lib/public/boolean.js +0 -3
  211. package/lib/public/constructor.d.ts +0 -3
  212. package/lib/public/constructor.js +0 -3
  213. package/lib/public/date.d.ts +0 -2
  214. package/lib/public/date.js +0 -2
  215. package/lib/public/f32.d.ts +0 -2
  216. package/lib/public/f32.js +0 -2
  217. package/lib/public/f64.d.ts +0 -2
  218. package/lib/public/f64.js +0 -2
  219. package/lib/public/file.d.ts +0 -2
  220. package/lib/public/file.js +0 -2
  221. package/lib/public/i128.d.ts +0 -2
  222. package/lib/public/i128.js +0 -2
  223. package/lib/public/i16.d.ts +0 -2
  224. package/lib/public/i16.js +0 -2
  225. package/lib/public/i32.d.ts +0 -2
  226. package/lib/public/i32.js +0 -2
  227. package/lib/public/i64.d.ts +0 -2
  228. package/lib/public/i64.js +0 -2
  229. package/lib/public/i8.d.ts +0 -2
  230. package/lib/public/i8.js +0 -2
  231. package/lib/public/int.d.ts +0 -2
  232. package/lib/public/int.js +0 -2
  233. package/lib/public/number.d.ts +0 -3
  234. package/lib/public/number.js +0 -3
  235. package/lib/public/object.d.ts +0 -2
  236. package/lib/public/object.js +0 -2
  237. package/lib/public/optional.d.ts +0 -2
  238. package/lib/public/optional.js +0 -2
  239. package/lib/public/primary.d.ts +0 -2
  240. package/lib/public/primary.js +0 -2
  241. package/lib/public/pure.d.ts +0 -2
  242. package/lib/public/pure.js +0 -2
  243. package/lib/public/record.d.ts +0 -3
  244. package/lib/public/record.js +0 -3
  245. package/lib/public/string.d.ts +0 -3
  246. package/lib/public/string.js +0 -3
  247. package/lib/public/symbol.d.ts +0 -2
  248. package/lib/public/symbol.js +0 -2
  249. package/lib/public/u128.d.ts +0 -2
  250. package/lib/public/u128.js +0 -2
  251. package/lib/public/u16.d.ts +0 -2
  252. package/lib/public/u16.js +0 -2
  253. package/lib/public/u32.d.ts +0 -2
  254. package/lib/public/u32.js +0 -2
  255. package/lib/public/u64.d.ts +0 -2
  256. package/lib/public/u64.js +0 -2
  257. package/lib/public/u8.d.ts +0 -2
  258. package/lib/public/u8.js +0 -2
  259. package/lib/public/uint.d.ts +0 -3
  260. package/lib/public/uint.js +0 -3
  261. package/lib/public/union.d.ts +0 -3
  262. package/lib/public/union.js +0 -3
  263. package/lib/public/unknown.d.ts +0 -3
  264. package/lib/public/unknown.js +0 -2
@@ -1,5 +0,0 @@
1
- import ParseError from "#ParseError";
2
- export default function fail(input, msg) {
3
- return new ParseError([{ input, message: msg, path: "" }]);
4
- }
5
- //# sourceMappingURL=fail.js.map
@@ -1,3 +0,0 @@
1
- import SchemaError from "#SchemaError";
2
- export default function schemafail(message: string, ...args: unknown[]): SchemaError;
3
- //# sourceMappingURL=schemafail.d.ts.map
@@ -1,5 +0,0 @@
1
- import SchemaError from "#SchemaError";
2
- export default function schemafail(message, ...args) {
3
- return new SchemaError(message, ...args);
4
- }
5
- //# sourceMappingURL=schemafail.js.map
@@ -1,4 +0,0 @@
1
- import type ParseIssue from "#ParseIssue";
2
- import type ParseOptions from "#ParseOptions";
3
- export default function error<T>(name: string, x: unknown, options?: ParseOptions<T>): [ParseIssue];
4
- //# sourceMappingURL=error.d.ts.map
@@ -1,11 +0,0 @@
1
- import expected from "#expected";
2
- import ParsedKey from "#ParsedKey";
3
- export default function error(name, x, options) {
4
- return [{
5
- input: x,
6
- message: expected(name, x),
7
- path: options?.[ParsedKey] ?? "",
8
- }];
9
- }
10
- ;
11
- //# sourceMappingURL=error.js.map
@@ -1,22 +0,0 @@
1
- declare const types: {
2
- a: string;
3
- b: string;
4
- bb: string;
5
- bi: string;
6
- co: string;
7
- d: string;
8
- f: string;
9
- i: string;
10
- n: string;
11
- nl: string;
12
- o: string;
13
- s: string;
14
- sy: string;
15
- u: string;
16
- ui: string;
17
- ur: string;
18
- };
19
- type At = number | string;
20
- export default function expect(type: keyof typeof types, got: unknown, at?: At): string;
21
- export {};
22
- //# sourceMappingURL=expect.d.ts.map
@@ -1,32 +0,0 @@
1
- const types = {
2
- a: "array",
3
- b: "boolean",
4
- bb: "blob",
5
- bi: "bigint",
6
- co: "constructor",
7
- d: "date",
8
- f: "file",
9
- i: "int",
10
- n: "number",
11
- nl: "null",
12
- o: "object",
13
- s: "string",
14
- sy: "symbol",
15
- u: "undefined",
16
- ui: "uint",
17
- ur: "url",
18
- };
19
- const prefix = (at) => at ? `.${at}: ` : "";
20
- function print_got(got) {
21
- if (got === undefined) {
22
- return "undefined";
23
- }
24
- if (got === null) {
25
- return "null";
26
- }
27
- return `\`${got}\` (${typeof got})`;
28
- }
29
- export default function expect(type, got, at = "") {
30
- return `${prefix(`${at}`)}expected ${types[type]}, got ${print_got(got)}`;
31
- }
32
- //# sourceMappingURL=expect.js.map
@@ -1,3 +0,0 @@
1
- declare const _default: (type: string, x: unknown) => string;
2
- export default _default;
3
- //# sourceMappingURL=expected.d.ts.map
@@ -1,11 +0,0 @@
1
- function print_got(x) {
2
- if (x === undefined) {
3
- return "undefined";
4
- }
5
- if (x === null) {
6
- return "null";
7
- }
8
- return `\`${x?.toString() ?? x}\` (${(typeof x)})`;
9
- }
10
- export default (type, x) => `expected ${type}, got ${print_got(x)}`;
11
- //# sourceMappingURL=expected.js.map
@@ -1,4 +0,0 @@
1
- import PrimaryType from "#PrimaryType";
2
- declare const _default: PrimaryType;
3
- export default _default;
4
- //# sourceMappingURL=primary.d.ts.map
@@ -1,3 +0,0 @@
1
- import PrimaryType from "#PrimaryType";
2
- export default new PrimaryType();
3
- //# sourceMappingURL=primary.js.map
@@ -1,3 +0,0 @@
1
- import type ParseIssue from "#ParseIssue";
2
- export default function messagesOf(issues: ParseIssue[]): string[];
3
- //# sourceMappingURL=messages-of.d.ts.map
@@ -1,4 +0,0 @@
1
- export default function messagesOf(issues) {
2
- return issues.map(i => i.message);
3
- }
4
- //# sourceMappingURL=messages-of.js.map
@@ -1,3 +0,0 @@
1
- import type ParseIssue from "#ParseIssue";
2
- export default function pathsOf(issues: ParseIssue[]): import("@rcompat/type/JSONPointer").default[];
3
- //# sourceMappingURL=paths-of.d.ts.map
@@ -1,4 +0,0 @@
1
- export default function pathsOf(issues) {
2
- return issues.map(i => i.path);
3
- }
4
- //# sourceMappingURL=paths-of.js.map
@@ -1,4 +0,0 @@
1
- import type ParseIssue from "#ParseIssue";
2
- import type Asserter from "@rcompat/test/Asserter";
3
- export default function throwsIssues(assert: Asserter, fn: () => unknown): ParseIssue[];
4
- //# sourceMappingURL=throws-issues.d.ts.map
@@ -1,13 +0,0 @@
1
- export default function throwsIssues(assert, fn) {
2
- try {
3
- fn();
4
- // fail if nothing was thrown
5
- assert().fail();
6
- return []; // unreachable
7
- }
8
- catch (error) {
9
- const e = error;
10
- return e.issues ?? [];
11
- }
12
- }
13
- //# sourceMappingURL=throws-issues.js.map
@@ -1,3 +0,0 @@
1
- declare const _default: import("../Validator.js").default<string>;
2
- export default _default;
3
- //# sourceMappingURL=uuid.d.ts.map
@@ -1,4 +0,0 @@
1
- import regex from "#validator/regex";
2
- const uuid = /^[^\W_]{8}-[^\W_]{4}-[^\W_]{4}-[^\W_]{4}-[^\W_]{12}$/u;
3
- export default regex(uuid, x => `"${x}" is not a valid UUID`);
4
- //# sourceMappingURL=uuid.js.map
@@ -1,2 +0,0 @@
1
- export { default } from "#DataType";
2
- //# sourceMappingURL=DataType.d.ts.map
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=DataType.js.map
@@ -1,2 +0,0 @@
1
- export { default } from "#Id";
2
- //# sourceMappingURL=Id.d.ts.map
package/lib/public/Id.js DELETED
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=Id.js.map
@@ -1,2 +0,0 @@
1
- export { default } from "#InferStore";
2
- //# sourceMappingURL=InferStore.d.ts.map
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=InferStore.js.map
@@ -1,2 +0,0 @@
1
- export { default } from "#InferStoreOut";
2
- //# sourceMappingURL=InferStoreOut.d.ts.map
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=InferStoreOut.js.map
@@ -1,2 +0,0 @@
1
- export { default } from "#Issue";
2
- //# sourceMappingURL=Issue.d.ts.map
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=Issue.js.map
@@ -1,2 +0,0 @@
1
- export { default } from "#json/JSONPayload";
2
- //# sourceMappingURL=JSONPayload.d.ts.map
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=JSONPayload.js.map
@@ -1,2 +0,0 @@
1
- export { default } from "#OmitType";
2
- //# sourceMappingURL=OmitType.d.ts.map
@@ -1,2 +0,0 @@
1
- export { default } from "#OmitType";
2
- //# sourceMappingURL=OmitType.js.map
@@ -1,2 +0,0 @@
1
- export { default } from "#Schema";
2
- //# sourceMappingURL=Schema.d.ts.map
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=Schema.js.map
@@ -1,2 +0,0 @@
1
- export { default } from "#Serialized";
2
- //# sourceMappingURL=Serialized.d.ts.map
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=Serialized.js.map
@@ -1,2 +0,0 @@
1
- export { default } from "#StoreId";
2
- //# sourceMappingURL=StoreId.d.ts.map
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=StoreId.js.map
@@ -1,2 +0,0 @@
1
- export { default } from "#StoreSchema";
2
- //# sourceMappingURL=StoreSchema.d.ts.map
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=StoreSchema.js.map
@@ -1,3 +0,0 @@
1
- export { default } from "#array";
2
- export { default as ArrayType } from "#ArrayType";
3
- //# sourceMappingURL=array.d.ts.map
@@ -1,3 +0,0 @@
1
- export { default } from "#array";
2
- export { default as ArrayType } from "#ArrayType";
3
- //# sourceMappingURL=array.js.map
@@ -1,2 +0,0 @@
1
- export { default } from "#bigint";
2
- //# sourceMappingURL=bigint.d.ts.map
@@ -1,2 +0,0 @@
1
- export { default } from "#bigint";
2
- //# sourceMappingURL=bigint.js.map
@@ -1,2 +0,0 @@
1
- export { default } from "#biguint";
2
- //# sourceMappingURL=biguint.d.ts.map
@@ -1,2 +0,0 @@
1
- export { default } from "#biguint";
2
- //# sourceMappingURL=biguint.js.map
@@ -1,2 +0,0 @@
1
- export { default } from "#blob";
2
- //# sourceMappingURL=blob.d.ts.map
@@ -1,2 +0,0 @@
1
- export { default } from "#blob";
2
- //# sourceMappingURL=blob.js.map
@@ -1,3 +0,0 @@
1
- export { default } from "#boolean";
2
- export { default as BooleanType } from "#BooleanType";
3
- //# sourceMappingURL=boolean.d.ts.map
@@ -1,3 +0,0 @@
1
- export { default } from "#boolean";
2
- export { default as BooleanType } from "#BooleanType";
3
- //# sourceMappingURL=boolean.js.map
@@ -1,3 +0,0 @@
1
- export { default } from "#constructor";
2
- export { default as ConstructorType } from "#ConstructorType";
3
- //# sourceMappingURL=constructor.d.ts.map
@@ -1,3 +0,0 @@
1
- export { default } from "#constructor";
2
- export { default as ConstructorType } from "#ConstructorType";
3
- //# sourceMappingURL=constructor.js.map
@@ -1,2 +0,0 @@
1
- export { default } from "#date";
2
- //# sourceMappingURL=date.d.ts.map
@@ -1,2 +0,0 @@
1
- export { default } from "#date";
2
- //# sourceMappingURL=date.js.map
@@ -1,2 +0,0 @@
1
- export { default } from "#f32";
2
- //# sourceMappingURL=f32.d.ts.map
package/lib/public/f32.js DELETED
@@ -1,2 +0,0 @@
1
- export { default } from "#f32";
2
- //# sourceMappingURL=f32.js.map
@@ -1,2 +0,0 @@
1
- export { default } from "#f64";
2
- //# sourceMappingURL=f64.d.ts.map
package/lib/public/f64.js DELETED
@@ -1,2 +0,0 @@
1
- export { default } from "#f64";
2
- //# sourceMappingURL=f64.js.map
@@ -1,2 +0,0 @@
1
- export { default } from "#file";
2
- //# sourceMappingURL=file.d.ts.map
@@ -1,2 +0,0 @@
1
- export { default } from "#file";
2
- //# sourceMappingURL=file.js.map
@@ -1,2 +0,0 @@
1
- export { default } from "#i128";
2
- //# sourceMappingURL=i128.d.ts.map
@@ -1,2 +0,0 @@
1
- export { default } from "#i128";
2
- //# sourceMappingURL=i128.js.map
@@ -1,2 +0,0 @@
1
- export { default } from "#i16";
2
- //# sourceMappingURL=i16.d.ts.map
package/lib/public/i16.js DELETED
@@ -1,2 +0,0 @@
1
- export { default } from "#i16";
2
- //# sourceMappingURL=i16.js.map
@@ -1,2 +0,0 @@
1
- export { default } from "#i32";
2
- //# sourceMappingURL=i32.d.ts.map
package/lib/public/i32.js DELETED
@@ -1,2 +0,0 @@
1
- export { default } from "#i32";
2
- //# sourceMappingURL=i32.js.map
@@ -1,2 +0,0 @@
1
- export { default } from "#i64";
2
- //# sourceMappingURL=i64.d.ts.map
package/lib/public/i64.js DELETED
@@ -1,2 +0,0 @@
1
- export { default } from "#i64";
2
- //# sourceMappingURL=i64.js.map
@@ -1,2 +0,0 @@
1
- export { default } from "#i8";
2
- //# sourceMappingURL=i8.d.ts.map
package/lib/public/i8.js DELETED
@@ -1,2 +0,0 @@
1
- export { default } from "#i8";
2
- //# sourceMappingURL=i8.js.map
@@ -1,2 +0,0 @@
1
- export { default } from "#int";
2
- //# sourceMappingURL=int.d.ts.map
package/lib/public/int.js DELETED
@@ -1,2 +0,0 @@
1
- export { default } from "#int";
2
- //# sourceMappingURL=int.js.map
@@ -1,3 +0,0 @@
1
- export { default } from "#number";
2
- export { default as NumberType } from "#NumberType";
3
- //# sourceMappingURL=number.d.ts.map
@@ -1,3 +0,0 @@
1
- export { default } from "#number";
2
- export { default as NumberType } from "#NumberType";
3
- //# sourceMappingURL=number.js.map
@@ -1,2 +0,0 @@
1
- export { default } from "#index";
2
- //# sourceMappingURL=object.d.ts.map
@@ -1,2 +0,0 @@
1
- export { default } from "#index";
2
- //# sourceMappingURL=object.js.map
@@ -1,2 +0,0 @@
1
- export { default } from "#optional";
2
- //# sourceMappingURL=optional.d.ts.map
@@ -1,2 +0,0 @@
1
- export { default } from "#optional";
2
- //# sourceMappingURL=optional.js.map
@@ -1,2 +0,0 @@
1
- export { default } from "#primary";
2
- //# sourceMappingURL=primary.d.ts.map
@@ -1,2 +0,0 @@
1
- export { default } from "#primary";
2
- //# sourceMappingURL=primary.js.map
@@ -1,2 +0,0 @@
1
- export { default } from "#pure";
2
- //# sourceMappingURL=pure.d.ts.map
@@ -1,2 +0,0 @@
1
- export { default } from "#pure";
2
- //# sourceMappingURL=pure.js.map
@@ -1,3 +0,0 @@
1
- export { default } from "#record";
2
- export { default as RecordType } from "#RecordType";
3
- //# sourceMappingURL=record.d.ts.map
@@ -1,3 +0,0 @@
1
- export { default } from "#record";
2
- export { default as RecordType } from "#RecordType";
3
- //# sourceMappingURL=record.js.map
@@ -1,3 +0,0 @@
1
- export { default } from "#string";
2
- export { default as StringType } from "#StringType";
3
- //# sourceMappingURL=string.d.ts.map
@@ -1,3 +0,0 @@
1
- export { default } from "#string";
2
- export { default as StringType } from "#StringType";
3
- //# sourceMappingURL=string.js.map
@@ -1,2 +0,0 @@
1
- export { default } from "#symbol";
2
- //# sourceMappingURL=symbol.d.ts.map
@@ -1,2 +0,0 @@
1
- export { default } from "#symbol";
2
- //# sourceMappingURL=symbol.js.map
@@ -1,2 +0,0 @@
1
- export { default } from "#u128";
2
- //# sourceMappingURL=u128.d.ts.map
@@ -1,2 +0,0 @@
1
- export { default } from "#u128";
2
- //# sourceMappingURL=u128.js.map
@@ -1,2 +0,0 @@
1
- export { default } from "#u16";
2
- //# sourceMappingURL=u16.d.ts.map
package/lib/public/u16.js DELETED
@@ -1,2 +0,0 @@
1
- export { default } from "#u16";
2
- //# sourceMappingURL=u16.js.map
@@ -1,2 +0,0 @@
1
- export { default } from "#u32";
2
- //# sourceMappingURL=u32.d.ts.map
package/lib/public/u32.js DELETED
@@ -1,2 +0,0 @@
1
- export { default } from "#u32";
2
- //# sourceMappingURL=u32.js.map
@@ -1,2 +0,0 @@
1
- export { default } from "#u64";
2
- //# sourceMappingURL=u64.d.ts.map
package/lib/public/u64.js DELETED
@@ -1,2 +0,0 @@
1
- export { default } from "#u64";
2
- //# sourceMappingURL=u64.js.map
@@ -1,2 +0,0 @@
1
- export { default } from "#u8";
2
- //# sourceMappingURL=u8.d.ts.map
package/lib/public/u8.js DELETED
@@ -1,2 +0,0 @@
1
- export { default } from "#u8";
2
- //# sourceMappingURL=u8.js.map
@@ -1,3 +0,0 @@
1
- export { default } from "#uint";
2
- export { default as UintType } from "#UintType";
3
- //# sourceMappingURL=uint.d.ts.map
@@ -1,3 +0,0 @@
1
- export { default } from "#uint";
2
- export { default as UintType } from "#UintType";
3
- //# sourceMappingURL=uint.js.map
@@ -1,3 +0,0 @@
1
- export { default } from "#union";
2
- export { default as UnionType } from "#UnionType";
3
- //# sourceMappingURL=union.d.ts.map
@@ -1,3 +0,0 @@
1
- export { default } from "#union";
2
- export { default as UnionType } from "#UnionType";
3
- //# sourceMappingURL=union.js.map
@@ -1,3 +0,0 @@
1
- export type { default as UnknownType } from "#UnknownType";
2
- export { default } from "#unknown";
3
- //# sourceMappingURL=unknown.d.ts.map
@@ -1,2 +0,0 @@
1
- export { default } from "#unknown";
2
- //# sourceMappingURL=unknown.js.map