UNPKG
resumefy
Version:
latest (1.6.0)
1.6.0
1.5.0
1.4.0
1.3.0
1.2.0
1.1.0
1.0.0
A simple toolkit to bring your JSON Resume to life
tmjssz/resumefy
resumefy
/
dist
/
validate
/
error.d.ts
6 lines
(5 loc)
•
225 B
TypeScript
View Raw
1
2
3
4
5
6
import
{
ValidationError
as
ValidationErrorJsonSchema
}
from
'jsonschema'
;
export
declare
class
ValidationError
extends
Error
{
errors
:
ValidationErrorJsonSchema
[];
constructor
(
errors
:
ValidationErrorJsonSchema
[]
); }