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
/
extendedJoi
/
allOf.d.ts
7 lines
(6 loc)
•
204 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
*
as
Joi
from
'joi'
;
interface
AllOfSchema
extends
Joi
.
AnySchema
{
items
(
types
:
Joi
.
SchemaLike
[]):
this
; }
declare
const
allOfExtension
:
Joi
.
Extension
;
export
{ allOfExtension,
AllOfSchema
, };