UNPKG
json-schema-to-joi
Version:
latest (5.1.0)
5.1.0
3.0.0
Converts JSON schema to Joi typescript code
json-schema-to-joi
/
dist
/
joi
/
any.d.ts
6 lines
(5 loc)
•
273 B
TypeScript
View Raw
1
2
3
4
5
6
import
{
JoiAny
}
from
'./types'
;
import
{
JSON
Schema4 }
from
'json-schema'
;
import
{
JoiStatement
}
from
'.'
;
export
declare
function
resolveJoiAnyMeta
(
joiAny
:
JoiAny
,
jsonSchema
:
JSON
Schema4
):
void
;
export
declare
function
generateAnyJoi
(
schema
:
JoiAny
):
JoiStatement
[];