@@ -47,11 +47,11 @@ export type BaseValidation<TInput = any> = {
47
47
/**
48
48
* Parses unknown input based on its requirement.
49
49
*
50
- * @internal This is an internal API.
51
- *
52
50
* @param input The input to be parsed.
53
51
*
54
52
* @returns The parse result.
53
+ *
54
+ * @internal
55
55
*/
56
56
_parse ( input : TInput ) : PipeResult < TInput > ;
57
57
} ;
@@ -71,11 +71,11 @@ export type BaseValidationAsync<TInput = any> = {
71
71
/**
72
72
* Parses unknown input based on its requirement.
73
73
*
74
- * @internal This is an internal API.
75
- *
76
74
* @param input The input to be parsed.
77
75
*
78
76
* @returns The parse result.
77
+ *
78
+ * @internal
79
79
*/
80
80
_parse ( input : TInput ) : Promise < PipeResult < TInput > > ;
81
81
} ;
@@ -91,11 +91,11 @@ export type BaseTransformation<TInput = any> = {
91
91
/**
92
92
* Parses unknown input based on its requirement.
93
93
*
94
- * @internal This is an internal API.
95
- *
96
94
* @param input The input to be parsed.
97
95
*
98
96
* @returns The parse result.
97
+ *
98
+ * @internal
99
99
*/
100
100
_parse ( input : TInput ) : PipeResult < TInput > ;
101
101
} ;
@@ -111,11 +111,11 @@ export type BaseTransformationAsync<TInput = any> = {
111
111
/**
112
112
* Parses unknown input based on its requirement.
113
113
*
114
- * @internal This is an internal API.
115
- *
116
114
* @param input The input to be parsed.
117
115
*
118
116
* @returns The parse result.
117
+ *
118
+ * @internal
119
119
*/
120
120
_parse ( input : TInput ) : Promise < PipeResult < TInput > > ;
121
121
} ;
0 commit comments