UNPKG
v8n
Version:
latest (1.5.1)
1.5.1
1.5.0
1.4.0
1.3.3
1.3.2
1.3.1
1.3.0
1.2.3
1.2.2
1.2.1
1.2.0
1.1.2
1.1.1
1.1.0
1.0.2
1.0.1
0.0.3
0.0.2
0.0.1
0.0.0
Dead simple fluent JavaScript validation library
github.com/imbrn/v8n
imbrn/v8n
v8n
/
types
/
validationerror.d.ts
9 lines
(7 loc)
•
165 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
Rule
}
from
'./rule'
;
export
interface
ValidationError
extends
Error
{
rule
:
Rule
;
value
:
any
;
cause
:
ValidationError
[] |
null
;
target
?:
string
; }