UNPKG

rtech-struct

Version:

Rtech Platform Superstruct Entity

13 lines (10 loc) 285 B
const s = require('superstruct') const Email = s.define('Email', require('is-email')) const CustomerInterlocutor = s.object({ firstname: s.optional(s.string()), lastname: s.optional(s.string()), email: Email }) module.exports = { CustomerInterlocutor: CustomerInterlocutor }