osury 1.0.1 → 1.2.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.
@@ -1,28 +0,0 @@
1
- /* TypeScript file generated from Schema.res by genType. */
2
-
3
- /* eslint-disable */
4
- /* tslint:disable */
5
-
6
- export type field = {
7
- readonly name: string;
8
- readonly type: schemaType;
9
- readonly required: boolean
10
- };
11
-
12
- export type variantCase = { readonly _tag: string; readonly payload: schemaType };
13
-
14
- export type schemaType =
15
- "String"
16
- | "Number"
17
- | "Integer"
18
- | "Boolean"
19
- | "Null"
20
- | { _tag: "Optional"; _0: schemaType }
21
- | { _tag: "Nullable"; _0: schemaType }
22
- | { _tag: "Object"; _0: field[] }
23
- | { _tag: "Array"; _0: schemaType }
24
- | { _tag: "Ref"; _0: string }
25
- | { _tag: "Enum"; _0: string[] }
26
- | { _tag: "PolyVariant"; _0: variantCase[] }
27
- | { _tag: "Dict"; _0: schemaType }
28
- | { _tag: "Union"; _0: schemaType[] };