v0.1.1
objvl
interface
SchemaObjectType
Properties
type
properties
validator
optional
errors
Search results
Types
Classes
Interfaces
Enums
Functions
Type aliases
Constants
Members
Properties
Methods
Getters
Setters
Enum members
Show privates
Other
In this module only
index
/
compiler
/
SchemaObjectType
Interface
SchemaObjectType
Defined in types
Properties
type
:
"object"
properties
:
Record
external
Record
<
string
,
SchemaType
type
SchemaType
compiler/
SchemaType
>
validator
?
:
(
(
value
:
Record
external
Record
<
string
,
unknown
>
)
=>
unknown
)
|
string
optional
?
:
boolean
errors
?
:
DefaultErrors
interface
DefaultErrors
compiler/
DefaultErrors
&
{
validator
?
:
(
(
value
:
Record
external
Record
<
string
,
unknown
>
,
validatorReturn
:
unknown
,
depth
:
string
)
=>
ValidationError
type
ValidationError
compiler/
ValidationError
)
|
string
}