UNPKG
@gulujs/toml
Version:
latest (0.4.1)
0.4.1
0.3.1
0.3.0
TOML parser and serializer
github.com/gulujs/toml
gulujs/toml
@gulujs/toml
/
dist
/
serializer
/
schema-validator.d.ts
9 lines
(8 loc)
•
229 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
Schema
}
from
'./schema.js'
;
export
declare
class
SchemaValidator
{
items
:
Schema
[];
private
readonly
tableObject;
constructor
(
items
:
Schema
[]
);
validate
():
void
;
checkSchema
(
schema
:
Schema
):
void
; }