@dev-crew-berlin/enter-js-utils 0.3.8 → 0.4.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.
- package/dist/api-client/api-base.d.ts +30 -0
- package/dist/api-client/api-base.js +292 -0
- package/dist/api-client/api-base.js.map +1 -0
- package/dist/api-client/index.d.ts +75 -0
- package/dist/api-client/index.js +200 -0
- package/dist/api-client/index.js.map +1 -0
- package/dist/lib/api-result.d.ts +25 -0
- package/dist/lib/api-result.js +16 -0
- package/dist/lib/api-result.js.map +1 -0
- package/dist/lib/index.d.ts +2 -0
- package/dist/lib/index.js +2 -0
- package/dist/lib/index.js.map +1 -1
- package/dist/lib/not-undefined.d.ts +1 -0
- package/dist/lib/not-undefined.js +4 -0
- package/dist/lib/not-undefined.js.map +1 -0
- package/dist/models/_helpers.d.ts +23 -0
- package/dist/models/_helpers.js +90 -0
- package/dist/models/_helpers.js.map +1 -0
- package/dist/models/access-token.d.ts +11 -0
- package/dist/models/access-token.js +8 -0
- package/dist/models/access-token.js.map +1 -0
- package/dist/models/attendee.d.ts +90 -0
- package/dist/models/attendee.js +105 -0
- package/dist/models/attendee.js.map +1 -0
- package/dist/models/checkin-counts.d.ts +10 -0
- package/dist/models/checkin-counts.js +6 -0
- package/dist/models/checkin-counts.js.map +1 -0
- package/dist/models/checkins.d.ts +40 -0
- package/dist/models/checkins.js +71 -0
- package/dist/models/checkins.js.map +1 -0
- package/dist/models/event.d.ts +40 -0
- package/dist/models/event.js +2 -0
- package/dist/models/event.js.map +1 -0
- package/dist/models/field-group.d.ts +804 -0
- package/dist/models/field-group.js +51 -0
- package/dist/models/field-group.js.map +1 -0
- package/dist/models/field-value.d.ts +2 -0
- package/dist/models/field-value.js +4 -0
- package/dist/models/field-value.js.map +1 -0
- package/dist/models/field.d.ts +553 -0
- package/dist/models/field.js +44 -0
- package/dist/models/field.js.map +1 -0
- package/dist/models/index.d.ts +14 -0
- package/dist/models/index.js +4 -0
- package/dist/models/index.js.map +1 -0
- package/dist/models/instance.d.ts +78 -0
- package/dist/models/instance.js +104 -0
- package/dist/models/instance.js.map +1 -0
- package/dist/models/invite.d.ts +33 -0
- package/dist/models/invite.js +18 -0
- package/dist/models/invite.js.map +1 -0
- package/dist/models/meta-field.d.ts +7 -0
- package/dist/models/meta-field.js +8 -0
- package/dist/models/meta-field.js.map +1 -0
- package/dist/models/user.d.ts +18 -0
- package/dist/models/user.js +11 -0
- package/dist/models/user.js.map +1 -0
- package/dist/models/variable.d.ts +27 -0
- package/dist/models/variable.js +15 -0
- package/dist/models/variable.js.map +1 -0
- package/dist/ui/checkin-count-indicator.stories.d.ts +10 -10
- package/package.json +15 -1
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { array, object, string, optional, union, } from 'fefe';
|
|
2
|
+
import { apiValidator, success } from '../lib';
|
|
3
|
+
import { field } from './field';
|
|
4
|
+
import { dictionary } from './_helpers';
|
|
5
|
+
var FieldGroups = /** @class */ (function () {
|
|
6
|
+
function FieldGroups(rawFieldGroupList) {
|
|
7
|
+
this.groups = rawFieldGroupList;
|
|
8
|
+
}
|
|
9
|
+
FieldGroups.prototype.toJSON = function () {
|
|
10
|
+
return this.groups;
|
|
11
|
+
};
|
|
12
|
+
FieldGroups.prototype.getFieldLabels = function () {
|
|
13
|
+
return this.groups.reduce(function (labels, group) {
|
|
14
|
+
return group.questions.reduce(function (labels, question) {
|
|
15
|
+
labels[question.name] = question.title;
|
|
16
|
+
return labels;
|
|
17
|
+
}, labels);
|
|
18
|
+
}, {});
|
|
19
|
+
};
|
|
20
|
+
FieldGroups.prototype.getLabelForField = function (fieldKey, language) {
|
|
21
|
+
var fieldLabel = this.getFieldLabels()[fieldKey];
|
|
22
|
+
var translatedLabel = fieldLabel === undefined || typeof fieldLabel === 'string'
|
|
23
|
+
? fieldLabel
|
|
24
|
+
: fieldLabel[language];
|
|
25
|
+
return translatedLabel !== null && translatedLabel !== void 0 ? translatedLabel : fieldKey;
|
|
26
|
+
};
|
|
27
|
+
return FieldGroups;
|
|
28
|
+
}());
|
|
29
|
+
export { FieldGroups };
|
|
30
|
+
export var fieldGroup = object({
|
|
31
|
+
title: optional(union(string(), dictionary(string()))),
|
|
32
|
+
class: optional(string()),
|
|
33
|
+
questions: array(field),
|
|
34
|
+
info: optional(union(string(), dictionary(string()))),
|
|
35
|
+
if: optional(string()),
|
|
36
|
+
}, { allowExcessProperties: true });
|
|
37
|
+
var rawFieldGroupList = array(fieldGroup);
|
|
38
|
+
export var parseFieldGroup = apiValidator(fieldGroup);
|
|
39
|
+
export var parseRawFieldGroupList = apiValidator(rawFieldGroupList);
|
|
40
|
+
// export const fieldGroups = (value: unknown): FefeResult<FieldGroups> => {
|
|
41
|
+
// const result = rawFieldGroupList(value)
|
|
42
|
+
// if (isFailure(result)) return result
|
|
43
|
+
// return fefeSuccess(new FieldGroups(result.right))
|
|
44
|
+
// }
|
|
45
|
+
export var parseFieldGroups = function (value) {
|
|
46
|
+
var result = apiValidator(rawFieldGroupList)(value);
|
|
47
|
+
if (!result.success)
|
|
48
|
+
return result;
|
|
49
|
+
return success(new FieldGroups(result.data));
|
|
50
|
+
};
|
|
51
|
+
//# sourceMappingURL=field-group.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"field-group.js","sourceRoot":"","sources":["../../src/models/field-group.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,EACL,MAAM,EACN,MAAM,EACN,QAAQ,EACR,KAAK,GAEN,MAAM,MAAM,CAAA;AACb,OAAO,EAAa,YAAY,EAAE,OAAO,EAAE,MAAM,QAAQ,CAAA;AACzD,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAA;AAC/B,OAAO,EAAc,UAAU,EAAE,MAAM,YAAY,CAAA;AAInD;IAGE,qBAAY,iBAAoC;QAC9C,IAAI,CAAC,MAAM,GAAG,iBAAiB,CAAA;IACjC,CAAC;IAED,4BAAM,GAAN;QACE,OAAO,IAAI,CAAC,MAAM,CAAA;IACpB,CAAC;IAED,oCAAc,GAAd;QACE,OAAO,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,UAAC,MAAM,EAAE,KAAK;YACtC,OAAO,KAAK,CAAC,SAAS,CAAC,MAAM,CAAC,UAAC,MAAM,EAAE,QAAQ;gBAC7C,MAAM,CAAC,QAAQ,CAAC,IAAI,CAAC,GAAG,QAAQ,CAAC,KAAK,CAAA;gBACtC,OAAO,MAAM,CAAA;YACf,CAAC,EAAE,MAAM,CAAC,CAAA;QACZ,CAAC,EAAE,EAAiB,CAAC,CAAA;IACvB,CAAC;IAED,sCAAgB,GAAhB,UAAiB,QAAgB,EAAE,QAAgB;QACjD,IAAM,UAAU,GAAG,IAAI,CAAC,cAAc,EAAE,CAAC,QAAQ,CAAC,CAAA;QAClD,IAAM,eAAe,GACnB,UAAU,KAAK,SAAS,IAAI,OAAO,UAAU,KAAK,QAAQ;YACxD,CAAC,CAAC,UAAU;YACZ,CAAC,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAA;QAC1B,OAAO,eAAe,aAAf,eAAe,cAAf,eAAe,GAAI,QAAQ,CAAA;IACpC,CAAC;IACH,kBAAC;AAAD,CAAC,AA5BD,IA4BC;;AAED,MAAM,CAAC,IAAM,UAAU,GAAG,MAAM,CAC9B;IACE,KAAK,EAAE,QAAQ,CAAC,KAAK,CAAC,MAAM,EAAE,EAAE,UAAU,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC;IACtD,KAAK,EAAE,QAAQ,CAAC,MAAM,EAAE,CAAC;IACzB,SAAS,EAAE,KAAK,CAAC,KAAK,CAAC;IACvB,IAAI,EAAE,QAAQ,CAAC,KAAK,CAAC,MAAM,EAAE,EAAE,UAAU,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC;IACrD,EAAE,EAAE,QAAQ,CAAC,MAAM,EAAE,CAAC;CACvB,EACD,EAAE,qBAAqB,EAAE,IAAI,EAAE,CAChC,CAAA;AAED,IAAM,iBAAiB,GAAG,KAAK,CAAC,UAAU,CAAC,CAAA;AAE3C,MAAM,CAAC,IAAM,eAAe,GAAG,YAAY,CAAC,UAAU,CAAC,CAAA;AACvD,MAAM,CAAC,IAAM,sBAAsB,GAAG,YAAY,CAAC,iBAAiB,CAAC,CAAA;AAKrE,4EAA4E;AAC5E,4CAA4C;AAC5C,yCAAyC;AACzC,sDAAsD;AACtD,IAAI;AAEJ,MAAM,CAAC,IAAM,gBAAgB,GAAG,UAAC,KAAc;IAC7C,IAAM,MAAM,GAAG,YAAY,CAAC,iBAAiB,CAAC,CAAC,KAAK,CAAC,CAAA;IACrD,IAAI,CAAC,MAAM,CAAC,OAAO;QAAE,OAAO,MAAM,CAAA;IAClC,OAAO,OAAO,CAAC,IAAI,WAAW,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAA;AAC9C,CAAC,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"field-value.js","sourceRoot":"","sources":["../../src/models/field-value.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,MAAM,CAAA;AACnD,OAAO,EAAE,KAAK,EAAE,MAAM,YAAY,CAAA;AAIlC,MAAM,CAAC,IAAM,aAAa,GAAG,KAAK,CAAC,KAAK,CAAC,MAAM,EAAE,EAAE,MAAM,EAAE,EAAE,KAAK,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC,CAAA"}
|
|
@@ -0,0 +1,553 @@
|
|
|
1
|
+
import { ValidatorReturnType } from 'fefe';
|
|
2
|
+
declare const staticField: import("fefe").Validator<import("fefe").ObjectResult<{
|
|
3
|
+
name: import("fefe").Validator<string, import("fefe").LeafError>;
|
|
4
|
+
title: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
5
|
+
optional: true;
|
|
6
|
+
};
|
|
7
|
+
info: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
8
|
+
optional: true;
|
|
9
|
+
};
|
|
10
|
+
required: import("fefe").Validator<boolean, import("fefe").FefeError>;
|
|
11
|
+
if: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
12
|
+
optional: true;
|
|
13
|
+
};
|
|
14
|
+
class: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
15
|
+
optional: true;
|
|
16
|
+
};
|
|
17
|
+
type: import("fefe").Validator<"static", import("fefe").LeafError>;
|
|
18
|
+
}>, import("fefe").FefeError>;
|
|
19
|
+
declare const textField: import("fefe").Validator<import("fefe").ObjectResult<{
|
|
20
|
+
name: import("fefe").Validator<string, import("fefe").LeafError>;
|
|
21
|
+
title: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
22
|
+
optional: true;
|
|
23
|
+
};
|
|
24
|
+
info: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
25
|
+
optional: true;
|
|
26
|
+
};
|
|
27
|
+
required: import("fefe").Validator<boolean, import("fefe").FefeError>;
|
|
28
|
+
if: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
29
|
+
optional: true;
|
|
30
|
+
};
|
|
31
|
+
class: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
32
|
+
optional: true;
|
|
33
|
+
};
|
|
34
|
+
type: import("fefe").Validator<"text", import("fefe").LeafError>;
|
|
35
|
+
}>, import("fefe").FefeError>;
|
|
36
|
+
declare const emailField: import("fefe").Validator<import("fefe").ObjectResult<{
|
|
37
|
+
name: import("fefe").Validator<string, import("fefe").LeafError>;
|
|
38
|
+
title: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
39
|
+
optional: true;
|
|
40
|
+
};
|
|
41
|
+
info: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
42
|
+
optional: true;
|
|
43
|
+
};
|
|
44
|
+
required: import("fefe").Validator<boolean, import("fefe").FefeError>;
|
|
45
|
+
if: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
46
|
+
optional: true;
|
|
47
|
+
};
|
|
48
|
+
class: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
49
|
+
optional: true;
|
|
50
|
+
};
|
|
51
|
+
type: import("fefe").Validator<"email", import("fefe").LeafError>;
|
|
52
|
+
}>, import("fefe").FefeError>;
|
|
53
|
+
declare const numberField: import("fefe").Validator<import("fefe").ObjectResult<{
|
|
54
|
+
name: import("fefe").Validator<string, import("fefe").LeafError>;
|
|
55
|
+
title: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
56
|
+
optional: true;
|
|
57
|
+
};
|
|
58
|
+
info: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
59
|
+
optional: true;
|
|
60
|
+
};
|
|
61
|
+
required: import("fefe").Validator<boolean, import("fefe").FefeError>;
|
|
62
|
+
if: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
63
|
+
optional: true;
|
|
64
|
+
};
|
|
65
|
+
class: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
66
|
+
optional: true;
|
|
67
|
+
};
|
|
68
|
+
type: import("fefe").Validator<"number", import("fefe").LeafError>;
|
|
69
|
+
}>, import("fefe").FefeError>;
|
|
70
|
+
declare const checkboxField: import("fefe").Validator<import("fefe").ObjectResult<{
|
|
71
|
+
items: import("fefe").Validator<import("fefe").ObjectResult<{
|
|
72
|
+
name: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").LeafError>;
|
|
73
|
+
value: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
74
|
+
optional: true;
|
|
75
|
+
};
|
|
76
|
+
}>[], import("fefe").FefeError>;
|
|
77
|
+
name: import("fefe").Validator<string, import("fefe").LeafError>;
|
|
78
|
+
title: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
79
|
+
optional: true;
|
|
80
|
+
};
|
|
81
|
+
info: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
82
|
+
optional: true;
|
|
83
|
+
};
|
|
84
|
+
required: import("fefe").Validator<boolean, import("fefe").FefeError>;
|
|
85
|
+
if: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
86
|
+
optional: true;
|
|
87
|
+
};
|
|
88
|
+
class: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
89
|
+
optional: true;
|
|
90
|
+
};
|
|
91
|
+
type: import("fefe").Validator<"check", import("fefe").LeafError>;
|
|
92
|
+
}>, import("fefe").FefeError>;
|
|
93
|
+
declare const singleCheckboxField: import("fefe").Validator<import("fefe").ObjectResult<{
|
|
94
|
+
value: import("fefe").Validator<number, import("fefe").FefeError>;
|
|
95
|
+
name: import("fefe").Validator<string, import("fefe").LeafError>;
|
|
96
|
+
title: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
97
|
+
optional: true;
|
|
98
|
+
};
|
|
99
|
+
info: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
100
|
+
optional: true;
|
|
101
|
+
};
|
|
102
|
+
required: import("fefe").Validator<boolean, import("fefe").FefeError>;
|
|
103
|
+
if: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
104
|
+
optional: true;
|
|
105
|
+
};
|
|
106
|
+
class: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
107
|
+
optional: true;
|
|
108
|
+
};
|
|
109
|
+
type: import("fefe").Validator<"checkbox", import("fefe").LeafError>;
|
|
110
|
+
}>, import("fefe").FefeError>;
|
|
111
|
+
declare const radioField: import("fefe").Validator<import("fefe").ObjectResult<{
|
|
112
|
+
items: import("fefe").Validator<import("fefe").ObjectResult<{
|
|
113
|
+
name: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").LeafError>;
|
|
114
|
+
value: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
115
|
+
optional: true;
|
|
116
|
+
};
|
|
117
|
+
}>[], import("fefe").FefeError>;
|
|
118
|
+
name: import("fefe").Validator<string, import("fefe").LeafError>;
|
|
119
|
+
title: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
120
|
+
optional: true;
|
|
121
|
+
};
|
|
122
|
+
info: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
123
|
+
optional: true;
|
|
124
|
+
};
|
|
125
|
+
required: import("fefe").Validator<boolean, import("fefe").FefeError>;
|
|
126
|
+
if: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
127
|
+
optional: true;
|
|
128
|
+
};
|
|
129
|
+
class: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
130
|
+
optional: true;
|
|
131
|
+
};
|
|
132
|
+
type: import("fefe").Validator<"radio", import("fefe").LeafError>;
|
|
133
|
+
}>, import("fefe").FefeError>;
|
|
134
|
+
declare const singleRadioField: import("fefe").Validator<import("fefe").ObjectResult<{
|
|
135
|
+
itemval: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
136
|
+
optional: true;
|
|
137
|
+
};
|
|
138
|
+
name: import("fefe").Validator<string, import("fefe").LeafError>;
|
|
139
|
+
title: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
140
|
+
optional: true;
|
|
141
|
+
};
|
|
142
|
+
info: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
143
|
+
optional: true;
|
|
144
|
+
};
|
|
145
|
+
required: import("fefe").Validator<boolean, import("fefe").FefeError>;
|
|
146
|
+
if: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
147
|
+
optional: true;
|
|
148
|
+
};
|
|
149
|
+
class: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
150
|
+
optional: true;
|
|
151
|
+
};
|
|
152
|
+
type: import("fefe").Validator<"radiobutton", import("fefe").LeafError>;
|
|
153
|
+
}>, import("fefe").FefeError>;
|
|
154
|
+
declare const selectField: import("fefe").Validator<import("fefe").ObjectResult<{
|
|
155
|
+
items: import("fefe").Validator<import("fefe").ObjectResult<{
|
|
156
|
+
name: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").LeafError>;
|
|
157
|
+
value: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
158
|
+
optional: true;
|
|
159
|
+
};
|
|
160
|
+
}>[], import("fefe").FefeError>;
|
|
161
|
+
name: import("fefe").Validator<string, import("fefe").LeafError>;
|
|
162
|
+
title: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
163
|
+
optional: true;
|
|
164
|
+
};
|
|
165
|
+
info: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
166
|
+
optional: true;
|
|
167
|
+
};
|
|
168
|
+
required: import("fefe").Validator<boolean, import("fefe").FefeError>;
|
|
169
|
+
if: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
170
|
+
optional: true;
|
|
171
|
+
};
|
|
172
|
+
class: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
173
|
+
optional: true;
|
|
174
|
+
};
|
|
175
|
+
type: import("fefe").Validator<"dropdown", import("fefe").LeafError>;
|
|
176
|
+
}>, import("fefe").FefeError>;
|
|
177
|
+
export declare const field: import("fefe").Validator<import("fefe").ObjectResult<{
|
|
178
|
+
name: import("fefe").Validator<string, import("fefe").LeafError>;
|
|
179
|
+
title: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
180
|
+
optional: true;
|
|
181
|
+
};
|
|
182
|
+
info: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
183
|
+
optional: true;
|
|
184
|
+
};
|
|
185
|
+
required: import("fefe").Validator<boolean, import("fefe").FefeError>;
|
|
186
|
+
if: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
187
|
+
optional: true;
|
|
188
|
+
};
|
|
189
|
+
class: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
190
|
+
optional: true;
|
|
191
|
+
};
|
|
192
|
+
type: import("fefe").Validator<"static", import("fefe").LeafError>;
|
|
193
|
+
}> | import("fefe").ObjectResult<{
|
|
194
|
+
name: import("fefe").Validator<string, import("fefe").LeafError>;
|
|
195
|
+
title: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
196
|
+
optional: true;
|
|
197
|
+
};
|
|
198
|
+
info: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
199
|
+
optional: true;
|
|
200
|
+
};
|
|
201
|
+
required: import("fefe").Validator<boolean, import("fefe").FefeError>;
|
|
202
|
+
if: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
203
|
+
optional: true;
|
|
204
|
+
};
|
|
205
|
+
class: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
206
|
+
optional: true;
|
|
207
|
+
};
|
|
208
|
+
type: import("fefe").Validator<"text", import("fefe").LeafError>;
|
|
209
|
+
}> | import("fefe").ObjectResult<{
|
|
210
|
+
name: import("fefe").Validator<string, import("fefe").LeafError>;
|
|
211
|
+
title: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
212
|
+
optional: true;
|
|
213
|
+
};
|
|
214
|
+
info: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
215
|
+
optional: true;
|
|
216
|
+
};
|
|
217
|
+
required: import("fefe").Validator<boolean, import("fefe").FefeError>;
|
|
218
|
+
if: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
219
|
+
optional: true;
|
|
220
|
+
};
|
|
221
|
+
class: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
222
|
+
optional: true;
|
|
223
|
+
};
|
|
224
|
+
type: import("fefe").Validator<"longtext", import("fefe").LeafError>;
|
|
225
|
+
}> | import("fefe").ObjectResult<{
|
|
226
|
+
name: import("fefe").Validator<string, import("fefe").LeafError>;
|
|
227
|
+
title: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
228
|
+
optional: true;
|
|
229
|
+
};
|
|
230
|
+
info: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
231
|
+
optional: true;
|
|
232
|
+
};
|
|
233
|
+
required: import("fefe").Validator<boolean, import("fefe").FefeError>;
|
|
234
|
+
if: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
235
|
+
optional: true;
|
|
236
|
+
};
|
|
237
|
+
class: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
238
|
+
optional: true;
|
|
239
|
+
};
|
|
240
|
+
type: import("fefe").Validator<"email", import("fefe").LeafError>;
|
|
241
|
+
}> | import("fefe").ObjectResult<{
|
|
242
|
+
name: import("fefe").Validator<string, import("fefe").LeafError>;
|
|
243
|
+
title: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
244
|
+
optional: true;
|
|
245
|
+
};
|
|
246
|
+
info: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
247
|
+
optional: true;
|
|
248
|
+
};
|
|
249
|
+
required: import("fefe").Validator<boolean, import("fefe").FefeError>;
|
|
250
|
+
if: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
251
|
+
optional: true;
|
|
252
|
+
};
|
|
253
|
+
class: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
254
|
+
optional: true;
|
|
255
|
+
};
|
|
256
|
+
type: import("fefe").Validator<"number", import("fefe").LeafError>;
|
|
257
|
+
}> | import("fefe").ObjectResult<{
|
|
258
|
+
items: import("fefe").Validator<import("fefe").ObjectResult<{
|
|
259
|
+
name: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").LeafError>;
|
|
260
|
+
value: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
261
|
+
optional: true;
|
|
262
|
+
};
|
|
263
|
+
}>[], import("fefe").FefeError>;
|
|
264
|
+
name: import("fefe").Validator<string, import("fefe").LeafError>;
|
|
265
|
+
title: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
266
|
+
optional: true;
|
|
267
|
+
};
|
|
268
|
+
info: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
269
|
+
optional: true;
|
|
270
|
+
};
|
|
271
|
+
required: import("fefe").Validator<boolean, import("fefe").FefeError>;
|
|
272
|
+
if: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
273
|
+
optional: true;
|
|
274
|
+
};
|
|
275
|
+
class: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
276
|
+
optional: true;
|
|
277
|
+
};
|
|
278
|
+
type: import("fefe").Validator<"check", import("fefe").LeafError>;
|
|
279
|
+
}> | import("fefe").ObjectResult<{
|
|
280
|
+
value: import("fefe").Validator<number, import("fefe").FefeError>;
|
|
281
|
+
name: import("fefe").Validator<string, import("fefe").LeafError>;
|
|
282
|
+
title: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
283
|
+
optional: true;
|
|
284
|
+
};
|
|
285
|
+
info: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
286
|
+
optional: true;
|
|
287
|
+
};
|
|
288
|
+
required: import("fefe").Validator<boolean, import("fefe").FefeError>;
|
|
289
|
+
if: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
290
|
+
optional: true;
|
|
291
|
+
};
|
|
292
|
+
class: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
293
|
+
optional: true;
|
|
294
|
+
};
|
|
295
|
+
type: import("fefe").Validator<"checkbox", import("fefe").LeafError>;
|
|
296
|
+
}> | import("fefe").ObjectResult<{
|
|
297
|
+
items: import("fefe").Validator<import("fefe").ObjectResult<{
|
|
298
|
+
name: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").LeafError>;
|
|
299
|
+
value: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
300
|
+
optional: true;
|
|
301
|
+
};
|
|
302
|
+
}>[], import("fefe").FefeError>;
|
|
303
|
+
name: import("fefe").Validator<string, import("fefe").LeafError>;
|
|
304
|
+
title: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
305
|
+
optional: true;
|
|
306
|
+
};
|
|
307
|
+
info: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
308
|
+
optional: true;
|
|
309
|
+
};
|
|
310
|
+
required: import("fefe").Validator<boolean, import("fefe").FefeError>;
|
|
311
|
+
if: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
312
|
+
optional: true;
|
|
313
|
+
};
|
|
314
|
+
class: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
315
|
+
optional: true;
|
|
316
|
+
};
|
|
317
|
+
type: import("fefe").Validator<"radio", import("fefe").LeafError>;
|
|
318
|
+
}> | import("fefe").ObjectResult<{
|
|
319
|
+
itemval: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
320
|
+
optional: true;
|
|
321
|
+
};
|
|
322
|
+
name: import("fefe").Validator<string, import("fefe").LeafError>;
|
|
323
|
+
title: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
324
|
+
optional: true;
|
|
325
|
+
};
|
|
326
|
+
info: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
327
|
+
optional: true;
|
|
328
|
+
};
|
|
329
|
+
required: import("fefe").Validator<boolean, import("fefe").FefeError>;
|
|
330
|
+
if: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
331
|
+
optional: true;
|
|
332
|
+
};
|
|
333
|
+
class: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
334
|
+
optional: true;
|
|
335
|
+
};
|
|
336
|
+
type: import("fefe").Validator<"radiobutton", import("fefe").LeafError>;
|
|
337
|
+
}> | import("fefe").ObjectResult<{
|
|
338
|
+
items: import("fefe").Validator<import("fefe").ObjectResult<{
|
|
339
|
+
name: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").LeafError>;
|
|
340
|
+
value: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
341
|
+
optional: true;
|
|
342
|
+
};
|
|
343
|
+
}>[], import("fefe").FefeError>;
|
|
344
|
+
name: import("fefe").Validator<string, import("fefe").LeafError>;
|
|
345
|
+
title: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
346
|
+
optional: true;
|
|
347
|
+
};
|
|
348
|
+
info: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
349
|
+
optional: true;
|
|
350
|
+
};
|
|
351
|
+
required: import("fefe").Validator<boolean, import("fefe").FefeError>;
|
|
352
|
+
if: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
353
|
+
optional: true;
|
|
354
|
+
};
|
|
355
|
+
class: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
356
|
+
optional: true;
|
|
357
|
+
};
|
|
358
|
+
type: import("fefe").Validator<"dropdown", import("fefe").LeafError>;
|
|
359
|
+
}>, import("fefe").LeafError>;
|
|
360
|
+
export declare const parseField: import("../lib").APIValidator<import("fefe").ObjectResult<{
|
|
361
|
+
name: import("fefe").Validator<string, import("fefe").LeafError>;
|
|
362
|
+
title: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
363
|
+
optional: true;
|
|
364
|
+
};
|
|
365
|
+
info: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
366
|
+
optional: true;
|
|
367
|
+
};
|
|
368
|
+
required: import("fefe").Validator<boolean, import("fefe").FefeError>;
|
|
369
|
+
if: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
370
|
+
optional: true;
|
|
371
|
+
};
|
|
372
|
+
class: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
373
|
+
optional: true;
|
|
374
|
+
};
|
|
375
|
+
type: import("fefe").Validator<"static", import("fefe").LeafError>;
|
|
376
|
+
}> | import("fefe").ObjectResult<{
|
|
377
|
+
name: import("fefe").Validator<string, import("fefe").LeafError>;
|
|
378
|
+
title: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
379
|
+
optional: true;
|
|
380
|
+
};
|
|
381
|
+
info: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
382
|
+
optional: true;
|
|
383
|
+
};
|
|
384
|
+
required: import("fefe").Validator<boolean, import("fefe").FefeError>;
|
|
385
|
+
if: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
386
|
+
optional: true;
|
|
387
|
+
};
|
|
388
|
+
class: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
389
|
+
optional: true;
|
|
390
|
+
};
|
|
391
|
+
type: import("fefe").Validator<"text", import("fefe").LeafError>;
|
|
392
|
+
}> | import("fefe").ObjectResult<{
|
|
393
|
+
name: import("fefe").Validator<string, import("fefe").LeafError>;
|
|
394
|
+
title: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
395
|
+
optional: true;
|
|
396
|
+
};
|
|
397
|
+
info: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
398
|
+
optional: true;
|
|
399
|
+
};
|
|
400
|
+
required: import("fefe").Validator<boolean, import("fefe").FefeError>;
|
|
401
|
+
if: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
402
|
+
optional: true;
|
|
403
|
+
};
|
|
404
|
+
class: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
405
|
+
optional: true;
|
|
406
|
+
};
|
|
407
|
+
type: import("fefe").Validator<"longtext", import("fefe").LeafError>;
|
|
408
|
+
}> | import("fefe").ObjectResult<{
|
|
409
|
+
name: import("fefe").Validator<string, import("fefe").LeafError>;
|
|
410
|
+
title: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
411
|
+
optional: true;
|
|
412
|
+
};
|
|
413
|
+
info: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
414
|
+
optional: true;
|
|
415
|
+
};
|
|
416
|
+
required: import("fefe").Validator<boolean, import("fefe").FefeError>;
|
|
417
|
+
if: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
418
|
+
optional: true;
|
|
419
|
+
};
|
|
420
|
+
class: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
421
|
+
optional: true;
|
|
422
|
+
};
|
|
423
|
+
type: import("fefe").Validator<"email", import("fefe").LeafError>;
|
|
424
|
+
}> | import("fefe").ObjectResult<{
|
|
425
|
+
name: import("fefe").Validator<string, import("fefe").LeafError>;
|
|
426
|
+
title: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
427
|
+
optional: true;
|
|
428
|
+
};
|
|
429
|
+
info: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
430
|
+
optional: true;
|
|
431
|
+
};
|
|
432
|
+
required: import("fefe").Validator<boolean, import("fefe").FefeError>;
|
|
433
|
+
if: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
434
|
+
optional: true;
|
|
435
|
+
};
|
|
436
|
+
class: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
437
|
+
optional: true;
|
|
438
|
+
};
|
|
439
|
+
type: import("fefe").Validator<"number", import("fefe").LeafError>;
|
|
440
|
+
}> | import("fefe").ObjectResult<{
|
|
441
|
+
items: import("fefe").Validator<import("fefe").ObjectResult<{
|
|
442
|
+
name: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").LeafError>;
|
|
443
|
+
value: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
444
|
+
optional: true;
|
|
445
|
+
};
|
|
446
|
+
}>[], import("fefe").FefeError>;
|
|
447
|
+
name: import("fefe").Validator<string, import("fefe").LeafError>;
|
|
448
|
+
title: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
449
|
+
optional: true;
|
|
450
|
+
};
|
|
451
|
+
info: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
452
|
+
optional: true;
|
|
453
|
+
};
|
|
454
|
+
required: import("fefe").Validator<boolean, import("fefe").FefeError>;
|
|
455
|
+
if: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
456
|
+
optional: true;
|
|
457
|
+
};
|
|
458
|
+
class: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
459
|
+
optional: true;
|
|
460
|
+
};
|
|
461
|
+
type: import("fefe").Validator<"check", import("fefe").LeafError>;
|
|
462
|
+
}> | import("fefe").ObjectResult<{
|
|
463
|
+
value: import("fefe").Validator<number, import("fefe").FefeError>;
|
|
464
|
+
name: import("fefe").Validator<string, import("fefe").LeafError>;
|
|
465
|
+
title: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
466
|
+
optional: true;
|
|
467
|
+
};
|
|
468
|
+
info: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
469
|
+
optional: true;
|
|
470
|
+
};
|
|
471
|
+
required: import("fefe").Validator<boolean, import("fefe").FefeError>;
|
|
472
|
+
if: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
473
|
+
optional: true;
|
|
474
|
+
};
|
|
475
|
+
class: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
476
|
+
optional: true;
|
|
477
|
+
};
|
|
478
|
+
type: import("fefe").Validator<"checkbox", import("fefe").LeafError>;
|
|
479
|
+
}> | import("fefe").ObjectResult<{
|
|
480
|
+
items: import("fefe").Validator<import("fefe").ObjectResult<{
|
|
481
|
+
name: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").LeafError>;
|
|
482
|
+
value: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
483
|
+
optional: true;
|
|
484
|
+
};
|
|
485
|
+
}>[], import("fefe").FefeError>;
|
|
486
|
+
name: import("fefe").Validator<string, import("fefe").LeafError>;
|
|
487
|
+
title: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
488
|
+
optional: true;
|
|
489
|
+
};
|
|
490
|
+
info: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
491
|
+
optional: true;
|
|
492
|
+
};
|
|
493
|
+
required: import("fefe").Validator<boolean, import("fefe").FefeError>;
|
|
494
|
+
if: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
495
|
+
optional: true;
|
|
496
|
+
};
|
|
497
|
+
class: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
498
|
+
optional: true;
|
|
499
|
+
};
|
|
500
|
+
type: import("fefe").Validator<"radio", import("fefe").LeafError>;
|
|
501
|
+
}> | import("fefe").ObjectResult<{
|
|
502
|
+
itemval: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
503
|
+
optional: true;
|
|
504
|
+
};
|
|
505
|
+
name: import("fefe").Validator<string, import("fefe").LeafError>;
|
|
506
|
+
title: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
507
|
+
optional: true;
|
|
508
|
+
};
|
|
509
|
+
info: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
510
|
+
optional: true;
|
|
511
|
+
};
|
|
512
|
+
required: import("fefe").Validator<boolean, import("fefe").FefeError>;
|
|
513
|
+
if: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
514
|
+
optional: true;
|
|
515
|
+
};
|
|
516
|
+
class: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
517
|
+
optional: true;
|
|
518
|
+
};
|
|
519
|
+
type: import("fefe").Validator<"radiobutton", import("fefe").LeafError>;
|
|
520
|
+
}> | import("fefe").ObjectResult<{
|
|
521
|
+
items: import("fefe").Validator<import("fefe").ObjectResult<{
|
|
522
|
+
name: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").LeafError>;
|
|
523
|
+
value: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
524
|
+
optional: true;
|
|
525
|
+
};
|
|
526
|
+
}>[], import("fefe").FefeError>;
|
|
527
|
+
name: import("fefe").Validator<string, import("fefe").LeafError>;
|
|
528
|
+
title: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
529
|
+
optional: true;
|
|
530
|
+
};
|
|
531
|
+
info: import("fefe").Validator<string | import("./_helpers").Dictionary<string>, import("fefe").FefeError> & {
|
|
532
|
+
optional: true;
|
|
533
|
+
};
|
|
534
|
+
required: import("fefe").Validator<boolean, import("fefe").FefeError>;
|
|
535
|
+
if: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
536
|
+
optional: true;
|
|
537
|
+
};
|
|
538
|
+
class: import("fefe").Validator<string, import("fefe").FefeError> & {
|
|
539
|
+
optional: true;
|
|
540
|
+
};
|
|
541
|
+
type: import("fefe").Validator<"dropdown", import("fefe").LeafError>;
|
|
542
|
+
}>>;
|
|
543
|
+
export declare type StaticField = ValidatorReturnType<typeof staticField>;
|
|
544
|
+
export declare type TextField = ValidatorReturnType<typeof textField>;
|
|
545
|
+
export declare type EmailField = ValidatorReturnType<typeof emailField>;
|
|
546
|
+
export declare type NumberField = ValidatorReturnType<typeof numberField>;
|
|
547
|
+
export declare type CheckboxField = ValidatorReturnType<typeof checkboxField>;
|
|
548
|
+
export declare type SingleCheckboxField = ValidatorReturnType<typeof singleCheckboxField>;
|
|
549
|
+
export declare type RadioField = ValidatorReturnType<typeof radioField>;
|
|
550
|
+
export declare type SingleRadioField = ValidatorReturnType<typeof singleRadioField>;
|
|
551
|
+
export declare type SelectField = ValidatorReturnType<typeof selectField>;
|
|
552
|
+
export declare type Field = ValidatorReturnType<typeof field>;
|
|
553
|
+
export {};
|