@xlit/schema
v2.8.1
Published
xlit object schema validation
Downloads
5
Maintainers
Readme
@xlit/schema
Schema validation for javascript
Installation
npm i @xlit/schema
Getting started
import { ObjectType } from '@xlit/schema';
const schema = new ObjectType({
username: new StringType().required(),
firstName: new StringType(),
lastName: new StringType(),
});
const user = await schema.resolve(userDto);