@lucania/schema 3.1.1 → 3.1.2
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/build/typing/extended.d.ts +20 -0
- package/package.json +1 -1
|
@@ -1,7 +1,27 @@
|
|
|
1
|
+
import { AnySchema } from "../schema/AnySchema";
|
|
2
|
+
import { ArraySchema } from "../schema/ArraySchema";
|
|
1
3
|
import { BaseSchema } from "../schema/BaseSchema";
|
|
4
|
+
import { BooleanSchema } from "../schema/BooleanSchema";
|
|
5
|
+
import { ConstantSchema } from "../schema/ConstantSchema";
|
|
6
|
+
import { DateSchema } from "../schema/DateSchema";
|
|
7
|
+
import { DynamicObjectSchema } from "../schema/DynamicObjectSchema";
|
|
2
8
|
import { EnumerationSchema } from "../schema/EnumerationSchema";
|
|
9
|
+
import { NumberSchema } from "../schema/NumberSchema";
|
|
3
10
|
import { ObjectSchema } from "../schema/ObjectSchema";
|
|
11
|
+
import { OrSetSchema } from "../schema/OrSetSchema";
|
|
12
|
+
import { StringSchema } from "../schema/StringSchema";
|
|
13
|
+
import { TupleSchema } from "../schema/TupleSchema";
|
|
4
14
|
import { DefaultValue } from "./toolbox";
|
|
5
15
|
export type BaseSchemaAny = BaseSchema<any, any, boolean, DefaultValue<any>>;
|
|
6
16
|
export type ObjectSchemaAny = ObjectSchema<any, boolean, DefaultValue<any>>;
|
|
7
17
|
export type EnumerationSchemaAny = EnumerationSchema<string[], boolean, DefaultValue<any>>;
|
|
18
|
+
export type TupleSchemaAny = TupleSchema<any[], boolean, DefaultValue<any>>;
|
|
19
|
+
export type NumberSchemaAny = NumberSchema<boolean, DefaultValue<any>>;
|
|
20
|
+
export type StringSchemaAny = StringSchema<boolean, DefaultValue<any>>;
|
|
21
|
+
export type DynamicObjectSchemaAny = DynamicObjectSchema<any, boolean, DefaultValue<any>>;
|
|
22
|
+
export type ConstantSchemaAny = ConstantSchema<any, boolean, DefaultValue<any>>;
|
|
23
|
+
export type DateSchemaAny = DateSchema<boolean, DefaultValue<any>>;
|
|
24
|
+
export type AnySchemaAny = AnySchema<boolean, DefaultValue<any>>;
|
|
25
|
+
export type OrSetSchemaAny = OrSetSchema<any, boolean, DefaultValue<any>>;
|
|
26
|
+
export type ArraySchemaAny = ArraySchema<any, boolean, DefaultValue<any>>;
|
|
27
|
+
export type BooleanSchemaAny = BooleanSchema<boolean, DefaultValue<any>>;
|