UNPKG

rtech-struct

Version:

Rtech Platform Superstruct Entity

15 lines (11 loc) 315 B
const s = require('superstruct') const { isEmail } = require('validator') const Email = s.define('Email', isEmail) const CustomerInterlocutor = s.object({ firstname: s.optional(s.string()), lastname: s.optional(s.string()), email: Email }) module.exports = { CustomerInterlocutor: CustomerInterlocutor }