Skip to content

Instantly share code, notes, and snippets.

@Jahans3
Last active May 31, 2018 21:17
Show Gist options
  • Save Jahans3/50cf9e064a00f4749b514dc102f9a338 to your computer and use it in GitHub Desktop.
Save Jahans3/50cf9e064a00f4749b514dc102f9a338 to your computer and use it in GitHub Desktop.
const Car = Interface('Car')({
seats: type('number'),
passengers: type('array', [type('object', Passenger)]),
beep: type('function')
},{
error: true,
strict: true
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment